Module

Test.Spec.QuickCheck

#quickCheck

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

Runs a Testable with a random seed and 100 inputs.

#quickCheck'

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

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

#quickCheckPure

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

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

Modules