aboutsummaryrefslogtreecommitdiff
path: root/driver-test/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'driver-test/Main.hs')
-rw-r--r--driver-test/Main.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/driver-test/Main.hs b/driver-test/Main.hs
new file mode 100644
index 00000000..d3f636e9
--- /dev/null
+++ b/driver-test/Main.hs
@@ -0,0 +1,12 @@
+module Main where
+
+import Test.Hspec (describe, hspec, Spec)
+import qualified ResponseFileSpec (spec)
+
+
+main :: IO ()
+main = hspec spec
+
+spec :: Spec
+spec = do
+ describe "ResponseFile" ResponseFileSpec.spec