aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-01-12 08:01:25 -0600
committerMarc Coquand <marc@mccd.space>2024-01-12 08:01:25 -0600
commit20c5abba2f762e917503e3d613729f12607baf88 (patch)
treeab9eb3b897c60949483ea2db12c8f7ff382d7391 /test
parent014feebff76f5bb5e711a3897ed930d8e4f009c1 (diff)
downloadfixgen-20c5abba2f762e917503e3d613729f12607baf88.tar.gz
fixgen-20c5abba2f762e917503e3d613729f12607baf88.tar.bz2
fixgen-20c5abba2f762e917503e3d613729f12607baf88.zip
Implement support for dates
Diffstat (limited to '')
-rw-r--r--test/test_parser.ml3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_parser.ml b/test/test_parser.ml
index 057c525..9f7f998 100644
--- a/test/test_parser.ml
+++ b/test/test_parser.ml
@@ -30,6 +30,9 @@ let rows_suite =
; "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"
+ ; "Supports past", `Quick, test_parse "user (2): created_at past"
+ ; "Supports future", `Quick, test_parse "user (2): ttl future"
+ ; "Supports now", `Quick, test_parse "user (2): created_at now"
]