hspec-2.10.9: A Testing Framework for Haskell
Safe Haskell None
Language Haskell2010

Test.Hspec.QuickCheck

Synopsis

Params

modifyArgs :: ( Args -> Args ) -> SpecWith a -> SpecWith a Source #

Use modified Args for given spec.

modifyMaxSize :: ( Int -> Int ) -> SpecWith a -> SpecWith a Source #

Use a modified maxSize for given spec.

Shortcuts

prop :: ( HasCallStack , Testable prop) => String -> prop -> Spec Source #

prop ".." $
  ..

is a shortcut for

it ".." $ property $
  ..

xprop :: ( HasCallStack , Testable prop) => String -> prop -> Spec Source #

xprop ".." $
  ..

is a shortcut for

xit ".." $ property $
  ..

fprop :: ( HasCallStack , Testable prop) => String -> prop -> Spec Source #

fprop ".." $
  ..

is a shortcut for

fit ".." $ property $
  ..