diff options
author | Marc Coquand <marc@mccd.space> | 2023-12-26 18:26:40 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2023-12-26 18:26:40 -0600 |
commit | 664b34059624d525d38da3e9e452a4bfc190a585 (patch) | |
tree | ef5558d350640e7ee206994559bbd1d87dad135d /test/test_parser.ml | |
parent | 6c39f6ebc688c1ed751c08e7cc11016148cd3ce7 (diff) | |
download | fixgen-664b34059624d525d38da3e9e452a4bfc190a585.tar.gz fixgen-664b34059624d525d38da3e9e452a4bfc190a585.tar.bz2 fixgen-664b34059624d525d38da3e9e452a4bfc190a585.zip |
Add support for username
Diffstat (limited to 'test/test_parser.ml')
-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 41fea3d..057c525 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 username", `Quick, test_parse "_ (5): name username" ; "Supports email", `Quick, test_parse "user (2): email email" ] |