예제 #1
0
 function test_should_render_template_undecorated_with_implicit_layout()
 {
     $dispatcher = new Trails_Dispatcher('var://app', 'trails_uri', 'default');
     $controller = new Trails_Controller($dispatcher);
     $controller->set_layout('layout');
     $controller->render_template('foo/index');
     $this->assertEqual($controller->get_response(), new Trails_Response('foo/index'));
 }