diff options
author | Chimrod <> | 2023-10-29 11:05:47 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-02 14:53:02 +0100 |
commit | a1bb96e73f54eaa7c7e4af5d930e9d10074afb08 (patch) | |
tree | b51a0900a4220765c1cbefce3fb39ab57bd1ffaa /test/qsp_parser_test.ml | |
parent | 77ae152ece4efbf8dde983c03bd995c982522bfd (diff) |
Added tests for the nested literal mecanism
Diffstat (limited to 'test/qsp_parser_test.ml')
-rw-r--r-- | test/qsp_parser_test.ml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/qsp_parser_test.ml b/test/qsp_parser_test.ml index 0828e22..7fd5b52 100644 --- a/test/qsp_parser_test.ml +++ b/test/qsp_parser_test.ml @@ -1,3 +1,5 @@ let () = Alcotest.run "qsp_parser" - [ Syntax.test; Syntax_error.test; Type_of.test; Dead_end.test ] + [ + Syntax.test; Literals.test; Syntax_error.test; Type_of.test; Dead_end.test; + ] |