Module

Test.Spec.QuickCheck

Package
purescript-spec-quickcheck
Repository
owickstrom/purescript-spec-quickcheck

#QCRunnerEffects Source

type QCRunnerEffects e = RunnerEffects (random :: RANDOM | e)

#quickCheck Source

quickCheck :: forall e p. Testable p => p -> Aff (random :: RANDOM | e) Unit

Runs a Testable with a random seed and 100 inputs.

#quickCheck' Source

quickCheck' :: forall e p. Testable p => Int -> p -> Aff (random :: RANDOM | e) Unit

Runs a Testable with a random seed and the given number of inputs.

#quickCheckPure Source

quickCheckPure :: forall e p. Testable p => Seed -> Int -> p -> Aff e Unit

Runs a Testable with a given seed and number of inputs.