sandbox_disabling.test in Zircon Profile 8.0
Same filename and directory in other branches
File
vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/sandbox_disabling.testView 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<br />