begin adding tests for regex

This commit is contained in:
2025-10-09 05:34:32 +01:00
parent 70215fbc0a
commit 250ae239be
5 changed files with 89 additions and 3 deletions

View File

@@ -6,7 +6,12 @@ struct
fun main () =
let
val tests =
List.concat [NormalMove.tests, NormalDelete.tests, Regression.tests]
List.concat
[ NormalMove.tests
, NormalDelete.tests
, Regression.tests
, RegexTests.tests
]
val tests = concat tests
in
runWithConfig [Configuration.PrintPassed false] tests