rename some test files
This commit is contained in:
@@ -66,10 +66,11 @@ $(SML_LIB)/basis/mlton.mlb
|
|||||||
shell/exception-logger.sml
|
shell/exception-logger.sml
|
||||||
test/Railroad/src/railroad.mlb
|
test/Railroad/src/railroad.mlb
|
||||||
|
|
||||||
|
test/persistent-vector-tests.sml
|
||||||
test/regex-tests.sml
|
test/regex-tests.sml
|
||||||
test/test-utils.sml
|
test/test-utils.sml
|
||||||
test/normal-move.sml
|
test/normal-move-tests.sml
|
||||||
test/normal-delete.sml
|
test/normal-delete-tests.sml
|
||||||
test/normal-yank.sml
|
test/normal-yank-tests.sml
|
||||||
test/regression.sml
|
test/regression-tests.sml
|
||||||
test/test.sml
|
test/test.sml
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
structure NormalDelete =
|
structure NormalDeleteTests =
|
||||||
struct
|
struct
|
||||||
open Railroad
|
open Railroad
|
||||||
open Railroad.Test
|
open Railroad.Test
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
structure NormalMove =
|
structure NormalMoveTests =
|
||||||
struct
|
struct
|
||||||
open Railroad
|
open Railroad
|
||||||
open Railroad.Test
|
open Railroad.Test
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
structure NormalYank =
|
structure NormalYankTests =
|
||||||
struct
|
struct
|
||||||
open Railroad
|
open Railroad
|
||||||
open Railroad.Test
|
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
|
struct
|
||||||
open Railroad
|
open Railroad
|
||||||
open Railroad.Test
|
open Railroad.Test
|
||||||
@@ -6,10 +6,11 @@ struct
|
|||||||
fun main () =
|
fun main () =
|
||||||
let
|
let
|
||||||
val tests = List.concat
|
val tests = List.concat
|
||||||
[ NormalMove.tests
|
[ NormalMoveTests.tests
|
||||||
, NormalDelete.tests
|
, NormalDeleteTests.tests
|
||||||
, NormalYank.tests
|
, NormalYankTests.tests
|
||||||
, Regression.tests
|
, PersistentVectorTests.tests
|
||||||
|
, RegressionTests.tests
|
||||||
, RegexTests.tests
|
, RegexTests.tests
|
||||||
]
|
]
|
||||||
val tests = concat tests
|
val tests = concat tests
|
||||||
|
|||||||
Reference in New Issue
Block a user