handlebars.php-helpers/tests/Layout/ExtendsHelperTest.php
2014-12-16 14:41:43 +00:00

51 lines
1.4 KiB
PHP

<?php
/*
* This file is part of Handlebars.php Helpers Set
*
* (c) Dmitriy Simushev <simushevds@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace JustBlackBird\HandlebarsHelpers\Tests\Layout;
use JustBlackBird\HandlebarsHelpers\Layout\BlockStorage;
use JustBlackBird\HandlebarsHelpers\Layout\ExtendsHelper;
/**
* Test class for "extends" helper.
*
* @author Dmitriy Simushev <simushevds@gmail.com>
*/
class ExtendsHelperTest extends \PHPUnit_Framework_TestCase
{
/**
* Tests that exception is thrown if wrong number of arguments is used.
*
* @expectedException InvalidArgumentException
* @dataProvider wrongArgumentsProvider
*/
public function testArgumentsCount($template)
{
$storage = new BlockStorage();
$helpers = new \Handlebars\Helpers(array('extends' => new ExtendsHelper($storage)));
$engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
$engine->render($template, array());
}
/**
* A data provider for testArgumentsCount method.
*/
public function wrongArgumentsProvider()
{
return array(
// Not enough arguments
array('{{#extends}}content{{/extends}}'),
// Too much arguments
array('{{#extends "arg1" "arg2"}}content{{/extends}}'),
);
}
}