]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/test/Twig/Tests/Fixtures/macros/with_filters.test
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / test / Twig / Tests / Fixtures / macros / with_filters.test
1 --TEST--
2 macro with a filter
3 --TEMPLATE--
4 {% import _self as test %}
5
6 {% macro test() %}
7 {% filter escape %}foo<br />{% endfilter %}
8 {% endmacro %}
9
10 {{ test.test() }}
11 --DATA--
12 return array();
13 --EXPECT--
14 foo&lt;br /&gt;