summaryrefslogtreecommitdiff
path: root/src/Test.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2022-12-20 21:21:30 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2022-12-20 21:21:30 +0100
commita5f0062f48fba018e7de8b5a3c0799381e535572 (patch)
tree985e7bd3f4ed045f352a11cc29831c717450fc24 /src/Test.hs
parent739d8e3f7b2e418a17e13c908aefcbb4c6c150f6 (diff)
Move TestRun monad and related types to separate module
Diffstat (limited to 'src/Test.hs')
-rw-r--r--src/Test.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Test.hs b/src/Test.hs
index 16936bb..11cbca8 100644
--- a/src/Test.hs
+++ b/src/Test.hs
@@ -1,7 +1,6 @@
module Test (
Test(..),
TestStep(..),
- Failed(..),
SourceLine(..),
MonadEval(..),
@@ -42,9 +41,6 @@ data TestStep = forall a. ExprType a => Let SourceLine VarName (Expr a) [TestSte
| PacketLoss (Expr Scientific) (Expr Node) [TestStep]
| Wait
-data Failed = Failed
- | ProcessCrashed Process
-
newtype SourceLine = SourceLine Text