1
+ cabal-version : 3.0
2
+
1
3
name : chell
2
4
version : 0.5
3
5
@@ -9,45 +11,42 @@ license-file: license.txt
9
11
author : John Millikin <john@john-millikin.com>
10
12
maintainer : Chris Martin, Julie Moronuki
11
13
build-type : Simple
12
- cabal-version : >= 1.6
13
14
14
15
homepage : https://github.com/typeclasses/chell
15
16
bug-reports : https://github.com/typeclasses/chell/issues
16
17
17
- tested-with : GHC == 8.2.2 , GHC == 8.4.4 , GHC == 8.6.3
18
-
19
18
description :
20
19
Chell is a simple and intuitive library for automated testing. It natively
21
20
supports assertion-based testing, and can use companion libraries
22
21
such as @chell-quickcheck@ to support more complex testing strategies.
23
- .
24
- An example test suite, which verifies the behavior of artithmetic operators.
25
- .
22
+
23
+ An example test suite, which verifies the behavior of arithmetic operators.
24
+
26
25
@
27
26
{-\# LANGUAGE TemplateHaskell \#-}
28
- .
27
+
29
28
import Test.Chell
30
- .
29
+
31
30
tests_Math : : Suite
32
31
tests_Math = suite \"math\"
33
32
  [ test_Addition
34
33
  , test_Subtraction
35
34
  ]
36
- .
35
+
37
36
test_Addition : : Test
38
37
test_Addition = assertions \"addition\" $ do
39
38
  $expect (equal (2 + 1) 3)
40
39
  $expect (equal (1 + 2) 3)
41
- .
40
+
42
41
test_Subtraction : : Test
43
42
test_Subtraction = assertions \"subtraction\" $ do
44
43
  $expect (equal (2 - 1) 1)
45
44
  $expect (equal (1 - 2) (-1))
46
- .
45
+
47
46
main : : IO ()
48
47
main = defaultMain [tests_Math]
49
48
@
50
- .
49
+
51
50
@
52
51
$ ghc --make chell-example.hs
53
52
$ ./chell-example
@@ -69,18 +68,18 @@ library
69
68
ghc-options : -Wall
70
69
71
70
build-depends :
72
- base >= 4.1 && < 5.0
73
- , bytestring >= 0.9
74
- , options >= 1.0 && < 2.0
71
+ base >= 4.10 && < 4.17
72
+ , bytestring >= 0.10.8.2 && < 0.12
73
+ , options >= 1.2.1 && < 1.3
75
74
, patience >= 0.2 && < 0.4
76
- , random >= 1.0
77
- , template-haskell >= 2.3
78
- , text
79
- , transformers >= 0.2
75
+ , random >= 1.1 && < 1.3
76
+ , template-haskell >= 2.12 && < 2.19
77
+ , text >= 1.2.3 && < 1.2.6
78
+ , transformers >= 0.5.2 && < 0.6
80
79
81
80
if flag(color-output)
82
81
build-depends :
83
- ansi-terminal >= 0.5 && < 0.9
82
+ ansi-terminal >= 0.8 && < 0.12
84
83
85
84
exposed-modules :
86
85
Test.Chell
0 commit comments