-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhspec-leancheck.cabal
75 lines (67 loc) · 2.27 KB
/
hspec-leancheck.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
-- Cabal file for hspec-leancheck
name: hspec-leancheck
version: 0.0.7
synopsis: LeanCheck support for the Hspec test framework.
description:
LeanCheck support for the Hspec test framework.
.
This package can be used to incorporate LeanCheck tests into Hspec test
suites.
.
Please see the Haddock documentation and README for more details.
homepage: https://github.com/rudymatela/hspec-leancheck#readme
license: BSD3
license-file: LICENSE
author: Rudy Matela <rudy@matela.com.br>
maintainer: Rudy Matela <rudy@matela.com.br>
category: Testing
build-type: Simple
cabal-version: 1.18
extra-doc-files: README.md
, TODO.md
, changelog.md
extra-source-files: .gitignore
, eg/minimal.hs
, eg/should.hs
, Makefile
, mk/depend.mk
, mk/haskell.mk
, mk/ghcdeps
, mk/haddock-i
, mk/All.hs
, mk/Toplibs.hs
, mk/install-on
, stack.yaml
, test/sdist
, .github/workflows/build.yml
tested-with: GHC==9.10
, GHC==9.8
, GHC==9.6
, GHC==9.4
, GHC==9.2
, GHC==9.0
, GHC==8.8
source-repository head
type: git
location: https://github.com/rudymatela/hspec-leancheck
source-repository this
type: git
location: https://github.com/rudymatela/hspec-leancheck
tag: v0.0.7
library
exposed-modules: Test.Hspec.LeanCheck
hs-source-dirs: src
build-depends: base >= 4 && < 5, hspec >= 2.5, hspec-core, leancheck >= 0.9.3, HUnit
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: test
build-depends: base >= 4 && < 5, hspec, leancheck, hspec-leancheck
default-language: Haskell2010
test-suite should
type: exitcode-stdio-1.0
main-is: should.hs
hs-source-dirs: test
build-depends: base >= 4 && < 5, hspec, leancheck, hspec-leancheck
default-language: Haskell2010