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

@@ -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