-
Notifications
You must be signed in to change notification settings - Fork 0
/
fitspec.cabal
229 lines (203 loc) · 6.89 KB
/
fitspec.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
name: fitspec
version: 0.4.11
synopsis: refining property sets for testing Haskell programs
description:
FitSpec provides automated assistance in the task of refining test properties
for Haskell functions.
.
FitSpec tests mutant variations of functions under test against a given
property set, recording any surviving mutants that pass all tests. FitSpec
then reports:
.
* surviving mutants: indicating incompleteness of properties,
prompting the user to amend a property or to add a new one;
.
* conjectures: indicating redundancy in the property set,
prompting the user to remove properties so to reduce the cost of testing.
homepage: https://github.com/rudymatela/fitspec#readme
license: BSD3
license-file: LICENSE
author: Rudy Matela, Colin Runciman
maintainer: Rudy Matela <[email protected]>
category: Testing
build-type: Simple
cabal-version: 1.18
extra-doc-files: README.md
, CREDITS.md
, TODO.md
, doc/modules.md
, doc/tutorial-property-creation.md
, doc/fitspec.svg
extra-source-files: .gitignore
, .github/workflows/build.yml
, Makefile
, bench/haskell-src-exts.hs
, bench/haskell-src.hs
, eg/Makefile
, eg/alga.hs
, eg/negation.hs
, eg/sorting.hs
, mk/depend.mk
, mk/ghcdeps
, mk/haddock-i
, mk/haskell.mk
, mk/install-on
, stack.yaml
, test/sdist
tested-with: GHC==9.8
, GHC==9.6
, GHC==9.4
, GHC==9.2
, GHC==9.0
, GHC==8.10
, GHC==8.6
, GHC==8.2
source-repository head
type: git
location: https://github.com/rudymatela/fitspec
source-repository this
type: git
location: https://github.com/rudymatela/fitspec
tag: v0.4.11
library
exposed-modules: Test.FitSpec
, Test.FitSpec.Engine
, Test.FitSpec.Report
, Test.FitSpec.Mutable
, Test.FitSpec.Mutable.Tuples
, Test.FitSpec.ShowMutable
, Test.FitSpec.ShowMutable.Tuples
, Test.FitSpec.Derive
, Test.FitSpec.Main
, Test.FitSpec.TestTypes
, Test.FitSpec.Utils
, Test.FitSpec.PrettyPrint
other-modules: Test.FitSpec.Dot
build-depends: base >= 4 && < 5, leancheck >= 0.9.6, cmdargs, template-haskell
hs-source-dirs: src
default-language: Haskell2010
test-suite mutate
type: exitcode-stdio-1.0
main-is: mutate.hs
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, fitspec
default-language: Haskell2010
test-suite showmutable
type: exitcode-stdio-1.0
main-is: showmutable.hs
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, fitspec
default-language: Haskell2010
test-suite derive
type: exitcode-stdio-1.0
main-is: derive.hs
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, fitspec
default-language: Haskell2010
test-suite utils
type: exitcode-stdio-1.0
main-is: utils.hs
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, fitspec
default-language: Haskell2010
benchmark avltrees
main-is: avltrees.hs
other-modules: AVLTree
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark bools
main-is: bools.hs
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark digraphs
main-is: digraphs.hs
other-modules: Digraph
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
-- The haskell-src and haskell-src-exts are commented out as they pull a lot of
-- dependencies. Ultimately a flag could be added to optionally activate them,
-- but better not make this cabal file too much complex.
--
--benchmark haskell-src
-- main-is: haskell-src.hs
-- build-depends: base >= 4 && < 5, fitspec, haskell-src
-- hs-source-dirs: bench
-- default-language: Haskell2010
-- type: exitcode-stdio-1.0
--
--benchmark haskell-src-exts
-- main-is: haskell-src-exts.hs
-- build-depends: base >= 4 && < 5, fitspec, haskell-src-exts
-- hs-source-dirs: bench
-- default-language: Haskell2010
-- type: exitcode-stdio-1.0
benchmark heaps
main-is: heaps.hs
other-modules: Heap
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark id
main-is: id.hs
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark list
main-is: list.hs
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark mergeheaps
main-is: mergeheaps.hs
other-modules: Heap
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark pretty
main-is: pretty.hs
build-depends: base >= 4 && < 5, fitspec, pretty
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark sets
main-is: sets.hs
other-modules: Set
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark setsofsets
main-is: setsofsets.hs
other-modules: Set
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark sieve
main-is: sieve.hs
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark sorting
main-is: sorting.hs
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0
benchmark spring
main-is: spring.hs
build-depends: base >= 4 && < 5, fitspec
hs-source-dirs: bench
default-language: Haskell2010
type: exitcode-stdio-1.0