mirror of
				https://github.com/Mibew/handlebars.php-helpers.git
				synced 2025-10-31 02:25:50 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 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\UnlessOverriddenHelper;
 | |
| 
 | |
| /**
 | |
|  * Test class for "unlessOverridden" helper.
 | |
|  *
 | |
|  * @author Dmitriy Simushev <simushevds@gmail.com>
 | |
|  */
 | |
| class UnlessOverriddenHelperTest 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('unlessOverridden' => new UnlessOverriddenHelper($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('{{#unlessOverridden}}false{{else}}true{{/unlessOverridden}}'),
 | |
|             // Too much arguments
 | |
|             array('{{#unlessOverridden "arg1" "arg2"}}false{{else}}true{{/unlessOverridden}}'),
 | |
|         );
 | |
|     }
 | |
| }
 |