hedgehog-quickcheck

Use QuickCheck generators in Hedgehog and vice versa.

https://hedgehog.qa

Version on this page:0.1
LTS Haskell 22.13:0.1.1@rev:6
Stackage Nightly 2024-03-14:0.1.1@rev:6
Latest on Hackage:0.1.1@rev:6

See all snapshots hedgehog-quickcheck appears in

BSD-3-Clause licensed by Jacob Stanley
Maintained by Jacob Stanley
This version can be pinned in stack with:hedgehog-quickcheck-0.1@sha256:9d8e7fc49458ef8b32fd1f136c661a1b3dd58e3ea9bcdc9fcf83b2f29c981f8f,1097

Module documentation for 0.1

hedgehog-quickcheck Hackage

Hedgehog will eat all your bugs.

Use QuickCheck generators in Hedgehog and vice versa.

Example

The Hedgehog.Gen.QuickCheck module allows the use of QuickCheck generators inside Hedgehog.

{-# LANGUAGE TemplateHaskell #-}

import           Hedgehog
import qualified Hedgehog.Gen as Gen
import qualified Hedgehog.Gen.QuickCheck as Gen
import qualified Hedgehog.Range as Range

Once you have your imports set up, you can write a property which mixes QuickCheck and Hedgehog generators together:

prop_reverse :: Property
prop_reverse =
  property $ do
    xs <- forAll $ Gen.list (Range.linear 0 100) (Gen.arbitrary :: Gen Char)
    reverse (reverse xs) === xs

And add the Template Haskell splice which will discover your properties:

tests :: IO Bool
tests =
  checkParallel $$(discover)

You can then load the module in GHCi, and run it:

λ tests
━━━ Test.Example ━━━
  ✓ prop_reverse passed 100 tests.

Changes

Version 0.1 (2017-07-16)