]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/expression.test
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / test / Twig / Tests / Fixtures / tags / include / expression.test
1 --TEST--
2 "include" tag allows expressions for the template to include
3 --TEMPLATE--
4 FOO
5 {% include foo %}
6
7 BAR
8 --TEMPLATE(foo.twig)--
9 FOOBAR
10 --DATA--
11 return array('foo' => 'foo.twig')
12 --EXPECT--
13 FOO
14
15 FOOBAR
16 BAR