File: /virtual/nagasaki/public_html/ec/vendor/twig/twig/test/Twig/Tests/Fixtures/autoescape/block.test
--TEST--
blocks and autoescape
--TEMPLATE--
{{ include('unrelated.txt.twig') -}}
{{ include('template.html.twig') -}}
--TEMPLATE(unrelated.txt.twig)--
{% block content %}{% endblock %}
--TEMPLATE(template.html.twig)--
{% extends 'parent.html.twig' %}
{% block content %}
{{ br -}}
{% endblock %}
--TEMPLATE(parent.html.twig)--
{% set _content = block('content')|raw %}
{{ _content|raw }}
--DATA--
return array('br' => '<br />')
--CONFIG--
return array('autoescape' => 'name')
--EXPECT--
<br />