aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/nested_string.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/nested_string.ml b/test/nested_string.ml
index 3338fa3..f674ee2 100644
--- a/test/nested_string.ml
+++ b/test/nested_string.ml
@@ -22,6 +22,7 @@ let string_variable () = _test_instruction {|"<<$variable>>"|} report
let integer () = _test_instruction {|"<<123>>"|} []
let integer_variable () = _test_instruction {|"<<variable>>"|} []
+let indexed_text () = _test_instruction {|variable['<<$variable>>']|} report
let test =
( "Nested_strings checker",
@@ -31,4 +32,5 @@ let test =
Alcotest.test_case "Integer" `Quick integer;
Alcotest.test_case "String" `Quick string;
Alcotest.test_case "Integer variable" `Quick integer_variable;
+ Alcotest.test_case "Indexed text" `Quick indexed_text;
] )