begin adding tests for persistent-vector.sml, and add bug fix to 'PersistentVector.delete' in light of one of the tests. (We were decrementing by the wrong value previously, but I fixed it and added a comment of how we arrive at the value we want to decrement by

This commit is contained in:
2025-12-09 11:42:30 +00:00
parent 51bce52ea4
commit e6bda83309
4 changed files with 114 additions and 28 deletions

View File

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