diff options
author | Chimrod <> | 2023-11-02 17:35:49 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-02 19:39:33 +0100 |
commit | fd02a44392304986a756e7d06f8142538b386529 (patch) | |
tree | 87fe05ab02eecee8b2c8cc89ed5fa2c8b83d9771 /test/qsp_parser_test.ml | |
parent | 05f74bee05c0c56da593a5e89069711d5993e3b1 (diff) |
Added a new checkers for unecessary use of strig containing an escaped expression
Diffstat (limited to 'test/qsp_parser_test.ml')
-rw-r--r-- | test/qsp_parser_test.ml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/qsp_parser_test.ml b/test/qsp_parser_test.ml index 7fd5b52..a86df13 100644 --- a/test/qsp_parser_test.ml +++ b/test/qsp_parser_test.ml @@ -1,5 +1,10 @@ let () = Alcotest.run "qsp_parser" [ - Syntax.test; Literals.test; Syntax_error.test; Type_of.test; Dead_end.test; + Syntax.test; + Literals.test; + Syntax_error.test; + Type_of.test; + Dead_end.test; + Nested_string.test; ] |