with_for_tag.test in Zircon Profile 8.0
Same filename and directory in other branches
File
vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/with_for_tag.testView source
--TEST--
"filter" tag applies the filter on "for" tags
--TEMPLATE--
{% filter upper %}
{% for item in items %}
{{ item }}
{% endfor %}
{% endfilter %}
--DATA--
return array('items' => array('a', 'b'))
--EXPECT--
A
B