From cfbd9cd78c34ed3f9e123b8a7988d778bc389ef1 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 4 Oct 2012 17:26:31 -0500 Subject: todo test for array dereferencing --- t/expressions.t | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 't') diff --git a/t/expressions.t b/t/expressions.t index 4cdc403..08d0894 100644 --- a/t/expressions.t +++ b/t/expressions.t @@ -73,4 +73,18 @@ render_ok( "backtracking into other hash variables with ../ and ." ); +{ local $TODO = "unimplemented"; +render_ok( + '{{articles.[10].comments}}', + { + articles => [ + (({}) x 10), + { comments => "First post!" }, + ], + }, + 'First post!', + "array dereferencing" +); +} + done_testing; -- cgit v1.2.3-54-g00ecf