context.test

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/context.test
View source
--TEST--
"for" tag keeps the context safe
--TEMPLATE--
{% for item in items %}
  {% for item in items %}
    * {{ item }}
  {% endfor %}
  * {{ item }}
{% endfor %}
--DATA--
return array('items' => array('a', 'b'))
--EXPECT--
      * a
      * b
    * a
      * a
      * b
    * b