chell: A simple and intuitive library for automated testing.
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 artithmetic operators.
{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TemplateHaskell #-} import Test.Chell test_Math :: Suite test_Math = suite "math" [test_Addition, test_Subtraction] test_Addition :: Suite test_Addition = assertions "addition" $ do $expect (equal (2 + 1) 3) $expect (equal (1 + 2) 3) test_Subtraction :: Suite test_Subtraction = assertions "subtraction" $ do $expect (equal (2 - 1) 1) $expect (equal (1 - 2) (-1)) main :: IO () main = defaultMain [test_Math]
$ ghc --make chell-example.hs $ ./chell-example PASS: 2 tests run, 2 tests passed
Downloads
- chell-0.2.3.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Versions [RSS] | 0.1, 0.1.1, 0.1.2, 0.1.3, 0.2, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.3, 0.3.1, 0.3.2, 0.3.3, 0.4, 0.4.0.1, 0.4.0.2, 0.5, 0.5.0.1 |
---|---|
Dependencies | base (>=4.1 && <4.8), bytestring (>=0.9), patience (>=0.1 && <0.2), random (>=1.0), template-haskell (>=2.3), text (>=0.7), transformers (>=0.2) [details] |
License | MIT |
Author | John Millikin <jmillikin@gmail.com> |
Maintainer | John Millikin <jmillikin@gmail.com> |
Revised | Revision 1 made by HerbertValerioRiedel at 2014-12-29T11:38:59Z |
Category | Testing |
Home page | https://john-millikin.com/software/chell/ |
Bug tracker | mailto:jmillikin@gmail.com |
Source repo | head: bzr branch https://john-millikin.com/branches/chell/0.2/ this: bzr branch https://john-millikin.com/branches/chell/0.2/ -r chell_0.2.3 |
Uploaded | by JohnMillikin at 2012-05-06T22:56:42Z |
Distributions | Arch:0.5.0.1, Debian:0.5, NixOS:0.5.0.1 |
Downloads | 19696 total (68 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs uploaded by user Build status unknown [no reports yet] |