Module

Test.Spec.QuickCheck

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

#quickCheck Source

quickCheck :: forall p. Testable p => p -> Aff Unit

Runs a Testable with a random seed and 100 inputs.

#quickCheck' Source

quickCheck' :: forall p. Testable p => Int -> p -> Aff Unit

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

#quickCheckPure Source

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

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