aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2023-12-25 19:17:01 -0600
committerMarc Coquand <marc@mccd.space>2023-12-26 09:57:19 -0600
commit5036848184a912a857c4c1e76ef02985295855eb (patch)
tree477f22604eb55124891a90a221d36c8f607406c9 /test
parentedc71c5d9f4e4f6f889436ddb6134292b80a9d14 (diff)
downloadfixgen-5036848184a912a857c4c1e76ef02985295855eb.tar.gz
fixgen-5036848184a912a857c4c1e76ef02985295855eb.tar.bz2
fixgen-5036848184a912a857c4c1e76ef02985295855eb.zip
Support semicolon as separator
Diffstat (limited to 'test')
-rw-r--r--test/test_parser.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_parser.ml b/test/test_parser.ml
index bfc980c..405219e 100644
--- a/test/test_parser.ml
+++ b/test/test_parser.ml
@@ -29,6 +29,7 @@ let relations_suite =
[ ( "Can reference other tables"
, `Quick
, test_parse "user: id uuidv4\npurchases: id uuidv4, user_id user.id" )
+ ; "Can use ; as a separator", `Quick, test_parse "user: id uuidv4; purchases: id uuidv4"
]