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.
47 lines
1.2 KiB
47 lines
1.2 KiB
<?php
|
|
|
|
/*
|
|
* @copyright NetMonsters <team@netmonsters.ru>
|
|
* @link http://netmonsters.ru
|
|
* @package Majestic
|
|
* @subpackage UnitTests
|
|
* @since 2011-10-11
|
|
*
|
|
* Unit tests for PHPView class
|
|
*/
|
|
|
|
require_once dirname(__FILE__) . '/../../../Registry.php';
|
|
require_once dirname(__FILE__) . '/../../../view/helpers/ViewHelper.php';
|
|
require_once dirname(__FILE__) . '/../../../view/helpers/HeadViewHelper.php';
|
|
|
|
class HeadViewHelperTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
public $helper;
|
|
|
|
public function setUp()
|
|
{
|
|
Registry::set('HeadViewHelper', array());
|
|
$this->helper = new HeadViewHelper(null);
|
|
}
|
|
|
|
public function testHead()
|
|
{
|
|
$this->helper->head('<meta />');
|
|
$result = Registry::get('HeadViewHelper');
|
|
$this->assertSame(array('<meta />'), Registry::get('HeadViewHelper'));
|
|
|
|
$this->helper->head('<link />');
|
|
$this->assertSame(array('<meta />', '<link />'), Registry::get('HeadViewHelper'));
|
|
}
|
|
|
|
public function testToString()
|
|
{
|
|
$this->helper->head('<meta />');
|
|
$this->helper->head('<link />');
|
|
|
|
$result = $this->helper->__toString();
|
|
|
|
$this->assertSame("<meta />\n <link />\n", $result);
|
|
}
|
|
}
|