added test for hash keys
authorArnaud Le Blanc <arnaud.lb@gmail.com>
Sat, 12 Nov 2011 10:56:47 +0000 (11:56 +0100)
committerArnaud Le Blanc <arnaud.lb@gmail.com>
Sat, 12 Nov 2011 10:56:47 +0000 (11:56 +0100)
test/Twig/Tests/Fixtures/expressions/array.test

index 8431540..5b81a0e 100644 (file)
@@ -27,6 +27,13 @@ Twig supports array notation
     2,
   ]|join(',')
 }}
+
+{# keys can be any expression #}
+{% set a = 1 %}
+{% set b = "foo" %}
+{% set ary = { a: 'a', b: 'b', 'c': 'c', a~b: 'd' } %}
+{{ ary|keys|join(',') }}
+{{ ary|join(',') }}
 --DATA--
 return array('bar' => 'bar', 'foo' => array('bar' => 'bar'))
 --EXPECT--