summaryrefslogtreecommitdiff
path: root/src/Test.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2026-08-24 22:29:42 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2026-08-24 22:46:29 +0200
commit24f39540d34c819c7870adce9f363af704c7cda7 (patch)
tree9caf2c06377651f98b06174f5e5caf452319a8e6 /src/Test.hs
parenta44406e96d17790a82708b36f8214b4b58d44ac6 (diff)
Data type for fully-qualified test name
Diffstat (limited to 'src/Test.hs')
-rw-r--r--src/Test.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Test.hs b/src/Test.hs
index e9aaaba..33c1cf0 100644
--- a/src/Test.hs
+++ b/src/Test.hs
@@ -25,8 +25,7 @@ import Script.Object
import Script.Shell
data Test = Test
- { testName :: Text
- , testModuleName :: ModuleName
+ { testName :: TestName
, testTags :: [ Expr Tag ]
, testSteps :: Expr (TestStep ())
}