template_instance.test in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
File
vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/template_instance.testView source
--TEST--
"include" tag accepts Twig_Template instance
--TEMPLATE--
{% include foo %} FOO
--TEMPLATE(foo.twig)--
BAR
--DATA--
return array('foo' => $twig->loadTemplate('foo.twig'))
--EXPECT--
BAR FOO