with_filters.test in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
File
vendor/twig/twig/test/Twig/Tests/Fixtures/macros/with_filters.testView source
--TEST--
macro with a filter
--TEMPLATE--
{% import _self as test %}
{% macro test() %}
{% filter escape %}foo<br />{% endfilter %}
{% endmacro %}
{{ test.test() }}
--DATA--
return array();
--EXPECT--
foo<br />