diff options
Diffstat (limited to 'src/Test.hs')
-rw-r--r-- | src/Test.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Test.hs b/src/Test.hs index d080cae..7f698a2 100644 --- a/src/Test.hs +++ b/src/Test.hs @@ -1,4 +1,5 @@ module Test ( + Module(..), Test(..), TestStep(..), SourceLine(..), @@ -30,6 +31,11 @@ import {-# SOURCE #-} Network import {-# SOURCE #-} Process import Util +data Module = Module + { moduleName :: [ Text ] + , moduleTests :: [ Test ] + } + data Test = Test { testName :: Text , testSteps :: [TestStep] |