MIT licensed by John Millikin
Maintained by Chris Martin, Julie Moronuki
This version can be pinned in stack with:chell-0.5.0.2@sha256:deefd202e729f7b13aae15a8035a0264c68cfa7348656ebddfa5268cdef784c6,1473

Module documentation for 0.5.0.2

Chell is a simple and intuitive library for automated testing. It natively supports assertion-based testing, and can use companion libraries such as chell-quickcheck to support more complex testing strategies.

An example test suite, which verifies the behavior of arithmetic operators.

{-# LANGUAGE TemplateHaskell #-}

import Test.Chell

tests_Math :: Suite
tests_Math = suite "math" [test_Addition, test_Subtraction]

test_Addition :: Test
test_Addition = assertions "addition" $ do
  $expect (equal (2 + 1) 3)
  $expect (equal (1 + 2) 3)

test_Subtraction :: Test
test_Subtraction = assertions "subtraction" $ do
  $expect (equal (2 - 1) 1)
  $expect (equal (1 - 2) (-1))

main :: IO ()
main = defaultMain [tests_Math]
$ ghc --make chell-example.hs
$ ./chell-example
PASS: 2 tests run, 2 tests passed

Changes

0.5.0.2

Miscellaneous updates and cleanup

Published by: Chris Martin

Date: 2023-07-11

0.5.0.1

Support up to GHC 9.2

Tighten various version bounds

Published by: Chris Martin

Date: 2021-01-14

0.5

Add support for patience 0.2

Drop support for patience 0.1

Add support for ansi-terminal 0.8

Published by: Chris Martin

Date: 2019-02-16

0.4.0.2

Published by: John Millikin

Date: 2017-12-12