예제 #1
0
파일: RenderTest.php 프로젝트: NDStudios/mc
 function testRenderLayout()
 {
     $this->app->render('hello', array('name' => 'Bob'), 'content');
     $this->app->render('layouts/layout');
     $this->expectOutputString('<html>Hello, Bob!</html>');
 }