Security update for Core, with self-updated composer
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / tags / include / template_instance.test
1 --TEST--
2 "include" tag 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