packages feed

tasty-hspec-1.2.0.3: tasty-hspec.cabal

cabal-version:       2.2
name:                tasty-hspec
version:             1.2.0.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:             BSD-3-Clause
license-file:        LICENSE
author:              Mitchell Rosen
maintainer:          mitchellwrosen@gmail.com
category:            Testing
build-type:          Simple
tested-with:         GHC == 9.0.2, GHC == 9.2.5, GHC == 9.4.4

extra-source-files:
  .gitignore
  CHANGELOG.md
  examples/example.hs
  README.md

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

library
  build-depends:
    base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17,
    hspec ^>= 2.10,
    hspec-core ^>= 2.10,
    QuickCheck ^>= 2.7 || ^>= 2.8 || ^>= 2.9 || ^>= 2.10 || ^>= 2.11 || ^>= 2.12 || ^>= 2.13 || ^>= 2.14,
    tasty ^>= 1.3 || ^>= 1.4,
    tasty-smallcheck >= 0.1 && < 0.9,
    tasty-quickcheck ^>= 0.9.1 || ^>= 0.10,
  if impl(ghc < 7.8)
    build-depends: tagged >= 0.2
  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