MIT licensed by John Millikin
Maintained by Chris Martin, Julie Moronuki
This version can be pinned in stack with:chell-quickcheck-0.2.5.4@sha256:3f5481422a918eec1c224a990cc69f729c953d574002243565fa1f68d392e081,813

Module documentation for 0.2.5.4

QuickCheck support for the Chell testing library.

import Test.Chell
import Test.Chell.QuickCheck

tests :: Suite
tests =
  suite "tests"
      [ test_Equality
      , test_Increment
      ]

test_Equality :: Test
test_Equality = property "equality" (\x -> x == x)

test_Increment :: Test
test_Increment = property "equality" (\x -> x + 1 > x)

main :: IO ()
main = defaultMain [tests]

Changes

0.2.5.4

Miscellaneous updates and cleanup

Published by: Chris Martin

Date: 2023-07-11

0.2.5.3

Support up to GHC 9.2

Tighten various version bounds

Published by: Chris Martin

Date: 2021-01-14

0.2.5.2

Add support for QuickCheck 2.12

Published by: Chris Martin

Date: 2019-02-16

0.2.5.1

Published by: John Millikin

Date: 2017-12-12