From 02a68abd6466029ea92d6160347e11f2b4d5d25a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 4 Oct 2012 19:21:27 -0500 Subject: allow [] for dereferencing with literals --- t/expressions.t | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 't') diff --git a/t/expressions.t b/t/expressions.t index f12022c..0026dbe 100644 --- a/t/expressions.t +++ b/t/expressions.t @@ -73,7 +73,28 @@ render_ok( "backtracking into other hash variables with ../ and ." ); -{ local $TODO = "unimplemented"; +render_ok( + '{{articles.[10].comments}}', + { + articles => { + 10 => { comments => "First post!" }, + }, + }, + 'First post!', + "field access with non-identifiers" +); + +render_ok( + '{{articles.[.foo\som#th"ing].comments}}', + { + articles => { + '.foo\som#th"ing' => { comments => "First post!" }, + }, + }, + 'First post!', + "field access with non-identifiers" +); + render_ok( '{{articles.[10].comments}}', { @@ -85,7 +106,6 @@ render_ok( 'First post!', "array dereferencing" ); -} render_ok( '{{.}} {{this}}', -- cgit v1.2.3-54-g00ecf