Add failing test for Mustache-style if blocks

This commit is contained in:
mAAdhaTTah 2016-12-11 21:21:22 -05:00
parent 27e9e1c3b2
commit 7aad4f30e3

View File

@ -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'
),
);
}