rename some test files
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
structure NormalDelete =
|
||||
structure NormalDeleteTests =
|
||||
struct
|
||||
open Railroad
|
||||
open Railroad.Test
|
||||
@@ -1,4 +1,4 @@
|
||||
structure NormalMove =
|
||||
structure NormalMoveTests =
|
||||
struct
|
||||
open Railroad
|
||||
open Railroad.Test
|
||||
@@ -1,4 +1,4 @@
|
||||
structure NormalYank =
|
||||
structure NormalYankTests =
|
||||
struct
|
||||
open Railroad
|
||||
open Railroad.Test
|
||||
1
test/persistent-vector-tests.sml
Normal file
1
test/persistent-vector-tests.sml
Normal file
@@ -0,0 +1 @@
|
||||
structure PersistentVectorTests = struct val tests = [] end
|
||||
@@ -1,4 +1,4 @@
|
||||
structure Regression =
|
||||
structure RegressionTests =
|
||||
struct
|
||||
open Railroad
|
||||
open Railroad.Test
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user