rename some test files

This commit is contained in:
2026-01-15 12:32:13 +00:00
parent 2058a57026
commit ef43efb680
7 changed files with 15 additions and 12 deletions

View File

@@ -66,10 +66,11 @@ $(SML_LIB)/basis/mlton.mlb
shell/exception-logger.sml
test/Railroad/src/railroad.mlb
test/persistent-vector-tests.sml
test/regex-tests.sml
test/test-utils.sml
test/normal-move.sml
test/normal-delete.sml
test/normal-yank.sml
test/regression.sml
test/normal-move-tests.sml
test/normal-delete-tests.sml
test/normal-yank-tests.sml
test/regression-tests.sml
test/test.sml

View File

@@ -1,4 +1,4 @@
structure NormalDelete =
structure NormalDeleteTests =
struct
open Railroad
open Railroad.Test

View File

@@ -1,4 +1,4 @@
structure NormalMove =
structure NormalMoveTests =
struct
open Railroad
open Railroad.Test

View File

@@ -1,4 +1,4 @@
structure NormalYank =
structure NormalYankTests =
struct
open Railroad
open Railroad.Test

View File

@@ -0,0 +1 @@
structure PersistentVectorTests = struct val tests = [] end

View File

@@ -1,4 +1,4 @@
structure Regression =
structure RegressionTests =
struct
open Railroad
open Railroad.Test

View File

@@ -6,10 +6,11 @@ struct
fun main () =
let
val tests = List.concat
[ NormalMove.tests
, NormalDelete.tests
, NormalYank.tests
, Regression.tests
[ NormalMoveTests.tests
, NormalDeleteTests.tests
, NormalYankTests.tests
, PersistentVectorTests.tests
, RegressionTests.tests
, RegexTests.tests
]
val tests = concat tests