hspec-2.11.12: A Testing Framework for Haskell
Safe HaskellNone
LanguageHaskell2010

Test.Hspec.QuickCheck

Synopsis

Params

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

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 $
  ..