packages feed

tasty-discover-3.0.2: tasty-discover.cabal

-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:           tasty-discover
version:        3.0.2
synopsis:       Test discovery for the tasty framework.
description:    Automatic test discovery and runner for the tasty framework.
                Prefix your test case names and tasty-discover will discover, collect and run them. All popular test libraries are covered. Configure once and then just write your tests. Avoid forgetting to add test modules to your Cabal/Hpack files. Tasty ingredients are included along with various configuration options for different use cases. Please see the `README.md` below for how to get started.
category:       Testing
stability:      Experimental
homepage:       https://github.com/lwm/tasty-discover#readme
bug-reports:    https://github.com/lwm/tasty-discover/issues
author:         Luke Murphy
maintainer:     Luke Murphy <lukewm@riseup.net>
copyright:      2016 Luke Murphy
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    CHANGELOG.md
    README.md

source-repository head
  type: git
  location: https://github.com/lwm/tasty-discover

library
  hs-source-dirs:
      library
  ghc-options: -Wall
  build-depends:
      base       >= 4.8 && < 5.0
    , containers >= 0.4 && < 1.0
    , directory  >= 1.1 && < 2.0
    , filepath   >= 1.3 && < 2.0
  exposed-modules:
      Test.Tasty.Config
      Test.Tasty.Discover
      Test.Tasty.Generator
  default-language: Haskell2010

executable tasty-discover
  main-is: executable/Main.hs
  ghc-options: -Wall
  build-depends:
      base       >= 4.8 && < 5.0
    , containers >= 0.4 && < 1.0
    , directory  >= 1.1 && < 2.0
    , filepath   >= 1.3 && < 2.0
    , tasty-discover
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: Tasty.hs
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      base       >= 4.8 && < 5.0
    , containers >= 0.4 && < 1.0
    , directory  >= 1.1 && < 2.0
    , filepath   >= 1.3 && < 2.0
    , base
    , tasty
    , tasty-discover
    , tasty-hspec
    , tasty-hunit
    , tasty-quickcheck
    , tasty-smallcheck
  other-modules:
      ConfigTest
      DiscoverTest
      SubMod.FooBaz
      SubMod.PropTest
  default-language: Haskell2010