expression.test

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/expression.test
View source
--TEST--
"include" tag allows expressions for the template to include
--TEMPLATE--
FOO
{% include foo %}

BAR
--TEMPLATE(foo.twig)--
FOOBAR
--DATA--
return array('foo' => 'foo.twig')
--EXPECT--
FOO

FOOBAR
BAR