Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / tags / autoescape / blocks.test
1 --TEST--
2 "autoescape" tag applies escaping on embedded blocks
3 --TEMPLATE--
4 {% autoescape 'html' %}
5   {% block foo %}
6     {{ var }}
7   {% endblock %}
8 {% endautoescape %}
9 --DATA--
10 return array('var' => '<br />')
11 --EXPECT--
12 &lt;br /&gt;