packages feed

tasty-tap 0.0.4 → 0.1.0

raw patch · 4 files changed

+9/−6 lines, 4 filesdep ~tastyPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: tasty

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,3 +1,6 @@+0.1.0+* Update for more recent versions of tasty [#3](https://github.com/MichaelXavier/tasty-tap/pull/3)+ 0.0.4 * Allow wider base 
src/Test/Tasty/Runners/TAP.hs view
@@ -13,7 +13,6 @@ import qualified Data.IntMap.Strict     as IM import           Data.List import           Data.Maybe-import           Data.Monoid import           System.IO import           Test.Tasty.Ingredients import           Test.Tasty.Options
tasty-tap.cabal view
@@ -1,5 +1,5 @@ name:                tasty-tap-version:             0.0.4+version:             0.1.0 synopsis:            TAP (Test Anything Protocol) Version 13 formatter for tasty description:         A tasty ingredient to output test results in TAP 13 format. license:             MIT@@ -28,7 +28,7 @@ library   exposed-modules:     Test.Tasty.Runners.TAP   build-depends:       base >=4.6 && <5-                     , tasty >= 0.10+                     , tasty >= 1.1                      , stm                      , containers   hs-source-dirs:      src@@ -47,7 +47,7 @@   default-language:   Haskell2010    build-depends:    base-                  , tasty+                  , tasty >= 1.1                   , tasty-tap                   , tasty-hunit                   , tasty-golden
test/golden/simple.tap view
@@ -1,5 +1,6 @@ TAP version 13 1..2-ok 1 - some example tests/passes-not ok 2 - some example tests/fails+ok 1 - some example tests.passes+not ok 2 - some example tests.fails+# test/Main.hs:56: # this was doomed