Security update to Drupal 8.4.6
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / expressions / strings.test
1 --TEST--
2 Twig supports string interpolation
3 --TEMPLATE--
4 {{ "foo #{"foo #{bar} baz"} baz" }}
5 {{ "foo #{bar}#{bar} baz" }}
6 --DATA--
7 return array('bar' => 'BAR');
8 --EXPECT--
9 foo foo BAR baz baz
10 foo BARBAR baz