diff options
Diffstat (limited to 'test/test_parser.ml')
-rw-r--r-- | test/test_parser.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_parser.ml b/test/test_parser.ml index abb0a40..80e9d12 100644 --- a/test/test_parser.ml +++ b/test/test_parser.ml @@ -20,6 +20,9 @@ let rows_suite = ; "Supports names", `Quick, test_parse "purchases (1): name _name" ; "Supports const", `Quick, test_parse "purchases (1): name \"hello\"" ; "Supports ints with min/max", `Quick, test_parse "purchases (1): name _int(1,20)" + ; ( "Supports a list of potential values" + , `Quick + , test_parse "purchases (1): name (\"a\",\"b\",\"c\")" ) ; ( "Supports setting amount of fixture to generate" , `Quick , test_parse "purchases (5): name _int(1,20)" ) |