hspec-2.10.10: A Testing Framework for Haskell
Safe HaskellSafe-Inferred
LanguageHaskell2010

Test.Hspec.QuickCheck

Synopsis

Params

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

modifyMaxSuccess :: (Int -> Int) -> SpecWith a -> SpecWith a #

modifyMaxDiscardRatio :: (Int -> Int) -> SpecWith a -> SpecWith a #

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

modifyMaxShrinks :: (Int -> Int) -> 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 $
  ..