summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/expressions.t14
1 files changed, 14 insertions, 0 deletions
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;