diff options
author | Marc Coquand <marc@mccd.space> | 2023-12-26 16:22:42 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2023-12-26 16:22:42 -0600 |
commit | 5994b98069cec82f0b18a6a1629cc9973fc9e0bf (patch) | |
tree | 1b5b093f0fb9a4f4194f9d5f20f1d1069ffe29b7 /test | |
parent | 35d5620add93feaa0db394cb1db87821031f23ef (diff) | |
download | fixgen-5994b98069cec82f0b18a6a1629cc9973fc9e0bf.tar.gz fixgen-5994b98069cec82f0b18a6a1629cc9973fc9e0bf.tar.bz2 fixgen-5994b98069cec82f0b18a6a1629cc9973fc9e0bf.zip |
Add support for email
Diffstat (limited to 'test')
-rw-r--r-- | test/test_parser.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_parser.ml b/test/test_parser.ml index db18540..41fea3d 100644 --- a/test/test_parser.ml +++ b/test/test_parser.ml @@ -28,6 +28,7 @@ let rows_suite = , test_parse "purchases (5): name int(1,20)" ) ; "Supports underscore tables", `Quick, test_parse "purchases_new (5): name int(1,20)" ; "Supports incremental index", `Quick, test_parse "purchases_new (5): id increment" + ; "Supports email", `Quick, test_parse "user (2): email email" ] |