aboutsummaryrefslogtreecommitdiff
path: root/driver-test/Main.hs
blob: d3f636e9f8dbb47c54826f142c70904a1fd80324 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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