-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtasty-hspec.cabal
47 lines (42 loc) · 1.38 KB
/
tasty-hspec.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
cabal-version: 2.2
author: Mitchell Dalvi Rosen
build-type: Simple
category: Testing
description: This package provides a Tasty provider for Hspec test suites.
homepage: https://github.com/mitchellwrosen/tasty-hspec
license-file: LICENSE
license: BSD-3-Clause
maintainer: Mitchell Dalvi Rosen <[email protected]>
name: tasty-hspec
synopsis: Hspec support for the Tasty test framework.
tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1, GHC == 9.12.1
version: 1.2.0.4
x-revision: 6
extra-doc-files:
.gitignore
CHANGELOG.md
README.md
extra-source-files:
examples/example.hs
source-repository head
type: git
location: https://github.com/mitchellwrosen/tasty-hspec.git
library
build-depends:
base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20 || ^>= 4.21,
hspec ^>= 2.11.0,
hspec-api ^>= 2.11.0,
hspec-core ^>= 2.11.0,
QuickCheck ^>= 2.7 || ^>= 2.8 || ^>= 2.9 || ^>= 2.10 || ^>= 2.11 || ^>= 2.12 || ^>= 2.13 || ^>= 2.14 || ^>= 2.15,
tasty ^>= 1.3 || ^>= 1.4 || ^>= 1.5,
tasty-smallcheck >= 0.1 && < 0.9,
tasty-quickcheck ^>= 0.9.1 || ^>= 0.10 || ^>= 0.11,
default-extensions:
LambdaCase
ScopedTypeVariables
default-language: Haskell2010
exposed-modules: Test.Tasty.Hspec
ghc-options: -Wall
if impl(ghc >= 8.0)
ghc-options: -Wcompat
hs-source-dirs: src