hedgehog-0.1: Hedgehog will eat all your bugs.

Safe HaskellNone
LanguageHaskell98

Hedgehog.Internal.TH

Synopsis

Documentation

type TExpQ a = Q (TExp a) Source #

checkSequential :: TExpQ (IO Bool) Source #

Check all the properties in a file sequentially.

tests :: IO Bool
tests =
  $$(checkSequential)

checkConcurrent :: TExpQ (IO Bool) Source #

Check all the properties in a file concurrently.

tests :: IO Bool
tests =
  $$(checkConcurrent)

checkWith :: RunnerConfig -> TExpQ (IO Bool) Source #

Check all the properties in a file.