-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquickcheck-groups.cabal
121 lines (112 loc) · 3.09 KB
/
quickcheck-groups.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
cabal-version: 3.0
name: quickcheck-groups
version: 0.0.1.4
bug-reports: https://github.com/jonathanknowles/quickcheck-groups/issues
license: Apache-2.0
license-file: LICENSE
author: Jonathan Knowles
maintainer: [email protected]
copyright: 2022–2025 Jonathan Knowles
category: Testing
synopsis: Testing group class instances with QuickCheck
description:
QuickCheck support for testing instances of type classes defined in the
groups library.
extra-doc-files:
CHANGELOG.md
README.md
common dependency-base
build-depends:base >= 4.14.3.0 && < 4.22
common dependency-hspec
build-depends:hspec >= 2.10.7 && < 2.12
common dependency-groups
build-depends:groups >= 0.5.3 && < 0.6
common dependency-pretty-show
build-depends:pretty-show >= 1.10 && < 1.11
common dependency-QuickCheck
build-depends:QuickCheck >= 2.14.2 && < 2.16
common dependency-quickcheck-classes
build-depends:quickcheck-classes >= 0.6.5.0 && < 0.7
common dependency-semigroupoids
build-depends:semigroupoids >= 5.3.7 && < 6.1
common extensions
default-extensions:
DerivingStrategies
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
LambdaCase
PolyKinds
ScopedTypeVariables
TypeApplications
ViewPatterns
source-repository head
type: git
location: https://github.com/jonathanknowles/quickcheck-groups
library
import:
, dependency-base
, dependency-groups
, dependency-QuickCheck
, dependency-quickcheck-classes
, extensions
hs-source-dirs:
src/public
exposed-modules:
Test.QuickCheck.Classes.Group
default-language:
Haskell2010
build-depends:
, internal
library internal
import:
, dependency-base
, dependency-pretty-show
, dependency-QuickCheck
, dependency-semigroupoids
, extensions
hs-source-dirs:
src/internal
exposed-modules:
Internal
Internal.Semigroup.Eq
Internal.Semigroup.Tuple
default-language:
Haskell2010
library prelude
import:
, dependency-base
, dependency-groups
, dependency-QuickCheck
, dependency-quickcheck-classes
, extensions
hs-source-dirs:
src/prelude
exposed-modules:
Internal.Prelude
default-language:
Haskell2010
build-depends:
, quickcheck-groups
test-suite test
import:
, dependency-base
, dependency-hspec
, dependency-groups
, dependency-QuickCheck
, dependency-quickcheck-classes
, extensions
main-is:
Spec.hs
hs-source-dirs:
src/test
other-modules:
ClassSpec
Test.Hspec.Laws
type: exitcode-stdio-1.0
default-language:
Haskell2010
build-tool-depends:
hspec-discover:hspec-discover ==2.*
build-depends:
, quickcheck-groups