loop_context_local.test

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_context_local.test
View source
--TEST--
"for" tag adds a loop variable to the context locally
--TEMPLATE--
{% for item in items %}
{% endfor %}
{% if loop is not defined %}WORKS{% endif %}
--DATA--
return array('items' => array())
--EXPECT--
WORKS