-
Notifications
You must be signed in to change notification settings - Fork 13
/
checkers.cabal
51 lines (48 loc) · 2.08 KB
/
checkers.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Name: checkers
Version: 0.6.0
Cabal-Version: >= 1.10
Synopsis: Check properties on standard classes and data structures.
Category: Testing
Description:
''Checkers'' wraps up the expected properties associated with various
standard type classes as QuickCheck properties. Also some morphism
properties. It also provides arbitrary instances and generator combinators
for common data types.
.
© 2008-2013 by Conal Elliott; BSD3 license.
Author: Conal Elliott
Maintainer: [email protected]
Copyright: (c) 2008-2013 by Conal Elliott
License: BSD3
License-File: COPYING
Stability: experimental
build-type: Simple
tested-with: GHC==9.6.1, GHC==9.4.1, GHC==9.2.4, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2
homepage: https://github.com/haskell-checkers/checkers
extra-source-files: README.md CHANGELOG.md
source-repository head
type: git
location: git://github.com/haskell-checkers/checkers.git
Library
hs-Source-Dirs: src
Extensions:
Build-Depends: base >= 4.10 && < 5, random, QuickCheck>=2.3, array >= 0.1, semigroupoids >= 5 && < 6.1
Exposed-Modules:
Test.QuickCheck.Utils
Test.QuickCheck.Checkers
Test.QuickCheck.Classes
Test.QuickCheck.Bottoms
Test.QuickCheck.Instances
Test.QuickCheck.Instances.Array
Test.QuickCheck.Instances.Char
Test.QuickCheck.Instances.Eq
Test.QuickCheck.Instances.List
Test.QuickCheck.Instances.Maybe
Test.QuickCheck.Instances.Num
Test.QuickCheck.Instances.Ord
Test.QuickCheck.Instances.Tuple
Test.QuickCheck.Later
Other-modules:
Control.Monad.Extensions
ghc-options: -Wall -Wredundant-constraints
Default-Language: Haskell2010