packages feed

tasty-tap-0.0.2: tasty-tap.cabal

name:                tasty-tap
version:             0.0.2
synopsis:            TAP (Test Anything Protocol) Version 13 formatter for tasty
description:         A tasty ingredient to output test results in TAP 13 format.
license:             MIT
license-file:        LICENSE
author:              Michael Xavier
maintainer:          michael@michaelxavier.net
homepage:            https://github.com/michaelxavier/tasty-tap
copyright:           (C) 2015 Michael Xavier
category:            Testing
build-type:          Simple
cabal-version:       >=1.10
tested-with:   GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1
extra-source-files:
  README.md
  changelog.md
  test/golden/simple.tap

source-repository head
  type: git
  location: git://github.com/michaelxavier/tasty-tap.git

flag lib-Werror
  default: False
  manual: True

library
  exposed-modules:     Test.Tasty.Runners.TAP
  build-depends:       base >=4.6 && <4.9
                     , tasty >= 0.10 && < 0.11
                     , stm
                     , containers
  hs-source-dirs:      src
  default-language:    Haskell2010

  if flag(lib-Werror)
    ghc-options: -Werror

  ghc-options: -Wall


test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:     test
  default-language:   Haskell2010

  build-depends:    base
                  , tasty
                  , tasty-tap
                  , tasty-hunit
                  , tasty-golden
                  , directory

  if flag(lib-Werror)
    ghc-options: -Werror

  ghc-options: -Wall