You are here

sandbox_disabling.test in Zircon Profile 8.0

File

vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/sandbox_disabling.test
View source
--TEST--
"include" tag sandboxed
--TEMPLATE--
{{ include("foo.twig", sandboxed = true) }}
{{ include("bar.twig") }}
--TEMPLATE(foo.twig)--
foo
--TEMPLATE(bar.twig)--
{{ foo|e }}
--DATA--
return array('foo' => 'bar<br />')
--EXPECT--
foo


bar&lt;br /&gt;