--- /dev/null
+{-# LANGUAGE
+ UnicodeSyntax
+ #-}
+module Main (main) where
+import System.Exit
+import Test.QuickCheck
+
+main ∷ IO ()
+main = mapM_ runTest tests
+
+runTest ∷ Property → IO ()
+runTest prop
+ = do r ← quickCheckResult prop
+ case r of
+ Success {} → return ()
+ GaveUp {} → exitFailure
+ Failure {} → exitFailure
+ NoExpectedFailure {} → exitFailure
+
+tests ∷ [Property]
+tests = [
+ ]
GHC-Options:
-Wall
+
+Test-Suite test-time-http
+ Type: exitcode-stdio-1.0
+ Main-Is: Test/Time/HTTP.hs
+ Default-Language: Haskell2010
+ Build-depends:
+ QuickCheck == 2.4.*,
+ ascii == 0.0.*,
+ blaze-builder == 0.3.*,
+ blaze-textual == 0.2.*,
+ attoparsec == 0.9.*,
+ base == 4.*,
+ base-unicode-symbols == 0.2.*,
+ time == 1.2.*
+ GHC-Options:
+ -Wall -fno-warn-orphans