]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/template_instance.test
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / test / Twig / Tests / Fixtures / functions / include / template_instance.test
1 --TEST--
2 "include" function accepts Twig_Template instance
3 --TEMPLATE--
4 {{ include(foo) }} FOO
5 --TEMPLATE(foo.twig)--
6 BAR
7 --DATA--
8 return array('foo' => $twig->loadTemplate('foo.twig'))
9 --EXPECT--
10 BAR FOO