Security update to Drupal 8.4.6
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / functions / include / autoescaping.test
1 --TEST--
2 "include" function is safe for auto-escaping
3 --TEMPLATE--
4 {{ include("foo.twig") }}
5 --TEMPLATE(foo.twig)--
6 <p>Test</p>
7 --DATA--
8 return array()
9 --EXPECT--
10 <p>Test</p>