File: tasty-hspec.cabal

package info (click to toggle)
haskell-tasty-hspec 1.1.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: haskell: 213; makefile: 2
file content (76 lines) | stat: -rw-r--r-- 2,501 bytes parent folder | download
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
cabal-version:       2.0
name:                tasty-hspec
version:             1.1.5.1
x-revision:          6
synopsis:            Hspec support for the Tasty test framework.
description:         This package provides a Tasty provider for Hspec test
                     suites.

homepage:            https://github.com/mitchellwrosen/tasty-hspec
license:             BSD3
license-file:        LICENSE
author:              Mitchell Rosen
maintainer:          [email protected]
category:            Testing
build-type:          Simple
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

extra-source-files:
  .gitignore
  .travis.yml
  cabal.project
  CHANGELOG.md
  examples/example.hs
  README.md

source-repository head
  type:     git
  location: https://github.com/mitchellwrosen/tasty-hspec.git

library
  exposed-modules:     Test.Tasty.Hspec
  hs-source-dirs:      src
  build-depends:       base
                            ^>= 4.9
                         || ^>= 4.10
                         || ^>= 4.11
                         || ^>= 4.12
                         || ^>= 4.13
                         || ^>= 4.14
                     , hspec >= 2 && < 2.8
                     , hspec-core >= 2 && < 2.8
                     , QuickCheck
                            ^>= 2.7
                         || ^>= 2.8
                         || ^>= 2.9
                         || ^>= 2.10
                         || ^>= 2.11
                         || ^>= 2.12
                         || ^>= 2.13
                         || ^>= 2.14
                     , tasty
                            ^>= 0.8
                         || ^>= 0.9
                         || ^>= 0.10
                         || ^>= 0.11
                         || ^>= 0.12
                         || ^>= 1.0
                         || ^>= 1.1
                         || ^>= 1.2
                         || ^>= 1.3
                     , tasty-smallcheck >= 0.1 && < 0.9
                     -- 0.9 is missing 'optionSetToArgs'
                     , tasty-quickcheck >=0.3 && <0.9 || ^>=0.9.1 || ^>= 0.10
  if impl(ghc < 7.8)
    build-depends:     tagged >= 0.2
  other-extensions:    CPP
                     , DeriveDataTypeable
  default-language:    Haskell2010
  ghc-options:         -Wall
  if impl(ghc >= 8.0)
    ghc-options:       -Wcompat