mirror of https://github.com/flightphp/core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
876 B
34 lines
876 B
12 years ago
|
<?php
|
||
|
/**
|
||
|
* Flight: An extensible micro-framework.
|
||
|
*
|
||
|
* @copyright Copyright (c) 2012, Mike Cao <mike@mikecao.com>
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||
|
*/
|
||
|
|
||
|
require_once 'PHPUnit.php';
|
||
|
require_once __DIR__.'/../flight/Flight.php';
|
||
|
|
||
|
class RenderTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
function setUp(){
|
||
|
Flight::init();
|
||
|
Flight::set('flight.views.path', __DIR__.'/views');
|
||
|
}
|
||
|
|
||
|
// Render a view
|
||
|
function testRenderView(){
|
||
|
Flight::render('hello', array('name' => 'Bob'));
|
||
|
|
||
|
$this->expectOutputString('Hello, Bob!');
|
||
|
}
|
||
|
|
||
|
// Renders a view into a layout
|
||
|
function testRenderLayout(){
|
||
|
Flight::render('hello', array('name' => 'Bob'), 'content');
|
||
|
Flight::render('layout');
|
||
|
|
||
|
$this->expectOutputString('<html>Hello, Bob!</html>');
|
||
|
}
|
||
|
}
|