diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-08-11 11:25:56 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-08-11 11:25:56 +0200 |
| commit | ca289b2f43a5b097c4ec20308c1661a0c404399c (patch) | |
| tree | 09b34b4516ef299fcf6e3689cf7bcd69fa83c640 /test/test_colitur.ml | |
| parent | e444ae5b03a9113fc6b2fc3fa3e2fd6b71bf8d4b (diff) | |
| download | colitur-ca289b2f43a5b097c4ec20308c1661a0c404399c.tar.gz colitur-ca289b2f43a5b097c4ec20308c1661a0c404399c.zip | |
kernel: Slug and Lang validated private strings
Both parse through a smart constructor returning result, and both hand-write
t_of_sexp so a malformed value in a data file is rejected at load rather than
silently accepted -- deriving the converter would have bypassed validation.
Diffstat (limited to 'test/test_colitur.ml')
| -rw-r--r-- | test/test_colitur.ml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_colitur.ml b/test/test_colitur.ml index c6c5b91..3341c36 100644 --- a/test/test_colitur.ml +++ b/test/test_colitur.ml @@ -1,2 +1,4 @@ (* Aggregating test runner. Per-module suites live in test_<module>.ml. *) -let () = Alcotest.run "colitur" [ Test_date.suite; Test_computus.suite; Test_colour.suite ] +let () = + Alcotest.run "colitur" + [ Test_date.suite; Test_computus.suite; Test_colour.suite; Test_slug.suite ] |
