added a unit test
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 2 Jan 2012 12:14:06 +0000 (13:14 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 2 Jan 2012 12:14:06 +0000 (13:14 +0100)
test/Twig/Tests/Fixtures/filters/join.test

index 244fa10..8feef63 100644 (file)
@@ -3,8 +3,10 @@
 --TEMPLATE--
 {{ ["foo", "bar"]|join(', ') }}
 {{ foo|join(', ') }}
+{{ bar|join(', ') }}
 --DATA--
-return array('foo' => new Foo())
+return array('foo' => new Foo(), 'bar' => new ArrayObject(array(3, 4)))
 --EXPECT--
 foo, bar
-1, 2
\ No newline at end of file
+1, 2
+3, 4