-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathtasty-hedgehog.cabal
More file actions
49 lines (46 loc) · 1.99 KB
/
Copy pathtasty-hedgehog.cabal
File metadata and controls
49 lines (46 loc) · 1.99 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
name: tasty-hedgehog
version: 1.4.1.0
license: BSD3
license-file: LICENCE
author: Dave Laing
maintainer: dave.laing.80@gmail.com
copyright: Copyright (c) 2017, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.
description: Integrates the <https://hackage.haskell.org/package/hedgehog hedgehog testing library> with the <https://hackage.haskell.org/package/tasty tasty testing framework>.
category: Testing
synopsis: Integration for tasty and hedgehog.
homepage: https://github.com/qfpl/tasty-hedgehog
bug-reports: https://github.com/qfpl/tasty-hedgehog/issues
build-type: Simple
extra-source-files: changelog.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.3, GHC == 8.10.1
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.7
GHC == 9.6.5
GHC == 9.8.2
GHC == 9.10.1
GHC == 9.12.2
source-repository head
type: git
location: git@github.com:qfpl/tasty-hedgehog.git
library
exposed-modules: Test.Tasty.Hedgehog
build-depends: base >= 4.8 && <4.22
, tagged >= 0.8 && < 0.9
, tasty >= 0.11 && < 1.6
, hedgehog >= 1.4 && < 1.8
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite tasty-hedgehog-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: base >= 4.8 && <4.22
, tasty >= 0.11 && < 1.6
, tasty-expected-failure >= 0.11 && < 0.13
, hedgehog >= 1.4 && < 1.8
, tasty-hedgehog
ghc-options: -Wall
default-language: Haskell2010