name:                tasty-hspec
version:             1.1.3.3
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:          mitchellwrosen@gmail.com
category:            Testing
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.4.1,
                     GHC == 7.4.2,
                     GHC == 7.6.1,
                     GHC == 7.6.2,
                     GHC == 7.6.3,
                     GHC == 7.8.1,
                     GHC == 7.8.2,
                     GHC == 7.8.3,
                     GHC == 7.8.4,
                     GHC == 7.10.1,
                     GHC == 7.10.2,
                     GHC == 7.10.3,
                     GHC == 8.0.1,
                     GHC == 8.0.2,
                     GHC == 8.2.1,
                     GHC == 8.2.2,
                     GHC == 8.4.1

extra-source-files:
  .gitignore
  .travis.yml
  cabal.project
  CHANGELOG.md
  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.5 && <5
                     , hspec            >=2   && <2.5
                     , hspec-core       >=2   && <2.5
                     , QuickCheck       >=2.7 && <2.12
                     , tasty            >=0.8 && <1.1
                     , 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
  default-language:    Haskell2010
  ghc-options:         -Wall