autoescaping.test in Zircon Profile 8
Same filename and directory in other branches
File
vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/autoescaping.testView source
--TEST--
"include" function is safe for auto-escaping
--TEMPLATE--
{{ include("foo.twig") }}
--TEMPLATE(foo.twig)--
<p>Test</p>
--DATA--
return array()
--EXPECT--
<p>Test</p>