packages feed

hspec-test-framework-0.0.0: hspec-test-framework.cabal

name:             hspec-test-framework
version:          0.0.0
license:          MIT
license-file:     LICENSE
copyright:        (c) 2013 Simon Hengel
maintainer:       Simon Hengel <sol@typeful.net>
build-type:       Simple
cabal-version:    >= 1.8
category:         Testing
bug-reports:      https://github.com/sol/hspec-test-framework/issues
homepage:         http://hspec.github.io/
synopsis:         Run test-framework tests with Hspec
description:      A `test-framework` compatibility layer on top of Hspec, it
                  allows you to run `test-framework` tests with Hspec
                  unmodified.
                  .
                  All that is required is to remove
                  .
                  * `test-framework`
                  .
                  * `test-framework-quickcheck2`
                  .
                  * `test-framework-hunit`
                  .
                  * `test-framework-th`
                  .
                  from the `build-depends` section of your cabal file and add
                  .
                  * `hspec-test-framework`
                  .
                  * `hspec-test-framework-th`
                  .
                  in theire place.
                  .
                  NOTE: The packages `hspec-test-framework` and
                  `hspec-test-framework-th` are hidden by default, so that they
                  do not interfere with an installed version of
                  `test-framework`.  If you want to use them with e.g. `ghci`,
                  you have to pass the command-line flags
                  @-packagehspec-test-framework -packagehspec-test-framework-th@
                  to GHC.

source-repository head
  type: git
  location: https://github.com/sol/hspec-test-framework

library
  exposed: False
  ghc-options:
      -Wall
  hs-source-dirs:
      src
  exposed-modules:
      Test.Framework
      Test.Framework.Providers.API
      Test.Framework.Providers.HUnit
      Test.Framework.Providers.QuickCheck2
  build-depends:
      base    == 4.*
    , hspec   >= 1.6.0
    , QuickCheck
    , HUnit