diff --git a/tests/Xamin/HandlebarsTest.php b/tests/Xamin/HandlebarsTest.php index 8defd75..ea756e2 100644 --- a/tests/Xamin/HandlebarsTest.php +++ b/tests/Xamin/HandlebarsTest.php @@ -177,6 +177,11 @@ class HandlebarsTest extends \PHPUnit_Framework_TestCase array('first' => false, 'second' => true), 'The second' ), + array( + '{{#value}}Hello {{value}}, from {{parent_context}}{{/value}}', + array('value' => 'string', 'parent_context' => 'parent string'), + 'Hello string, from parent string' + ), ); }