You are here

template_instance.test in Zircon Profile 8

File

vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/template_instance.test
View 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