-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtasty-quickcheck-laws.cabal
More file actions
77 lines (62 loc) · 2.06 KB
/
Copy pathtasty-quickcheck-laws.cabal
File metadata and controls
77 lines (62 loc) · 2.06 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: tasty-quickcheck-laws
version: 0.0.3
description: Please see the README on GitHub at <https://github.com/nbloomf/tasty-quickcheck-laws#readme>
homepage: https://github.com/nbloomf/tasty-quickcheck-laws#readme
bug-reports: https://github.com/nbloomf/tasty-quickcheck-laws/issues
author: Nathan Bloomfield
maintainer: nathan.bloomfield@a8c.com
copyright: 2018 Automattic, Inc.
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
category: testing, tasty, quickcheck
synopsis: Pre-built tasty trees for checking lawful class properties using QuickCheck
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/nbloomf/tasty-quickcheck-laws
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base >=4.7 && <5
, QuickCheck >=2.10.1
, tasty >=1.0.1.1
, tasty-quickcheck >=0.9.2
exposed-modules:
Test.Tasty.QuickCheck.Laws
Test.Tasty.QuickCheck.Laws.Applicative
Test.Tasty.QuickCheck.Laws.Class
Test.Tasty.QuickCheck.Laws.Eq
Test.Tasty.QuickCheck.Laws.ErrorMonad
Test.Tasty.QuickCheck.Laws.Functor
Test.Tasty.QuickCheck.Laws.Monad
Test.Tasty.QuickCheck.Laws.Monoid
Test.Tasty.QuickCheck.Laws.Semigroup
Test.Tasty.QuickCheck.Laws.ReaderMonad
Test.Tasty.QuickCheck.Laws.StateMonad
Test.Tasty.QuickCheck.Laws.WriterMonad
Test.Tasty.QuickCheck.Laws.MaybeMonad
Test.Tasty.QuickCheck.Laws.IdentityMonad
executable tasty-quickcheck-laws-demo
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, tasty-quickcheck-laws
test-suite tasty-quickcheck-laws-test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, tasty-quickcheck-laws
, QuickCheck >=2.10.1
, tasty >=1.0.1.1