integration tests for interpolated strings

This commit is contained in:
Arnaud Le Blanc
2011-11-12 16:55:29 +01:00
parent 773fff59ed
commit 0e63abba76
@@ -0,0 +1,8 @@
--TEST--
Twig supports string interpolation
--TEMPLATE--
{{ "foo #{"foo #{bar} baz"} baz" }}
--DATA--
return array('bar' => 'BAR');
--EXPECT--
foo foo BAR baz baz