diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-01-06 14:35:00 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-01-06 14:35:00 +0100 |
commit | a13d21c688cae176be4505a5a6e9d64739845ea3 (patch) | |
tree | b46e2ca15cf3ca46bd2ce0ab2329e9969608667c /driver-test/Main.hs | |
parent | 6ddd758be0e7b50bd19d33400b3c3013d60786cb (diff) | |
parent | 13e1eaf3ca897ffcf1b37d96e2867bc80d4ca64a (diff) |
Merge branch 'master' into ghc-head
Diffstat (limited to 'driver-test/Main.hs')
-rw-r--r-- | driver-test/Main.hs | 12 |
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 |