tasty-tap 0.0.2 → 0.0.3
raw patch · 2 files changed
+2/−5 lines, 2 filesdep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: tasty
API changes (from Hackage documentation)
Files
- tasty-tap.cabal +2/−2
- test/Main.hs +0/−3
tasty-tap.cabal view
@@ -1,5 +1,5 @@ name: tasty-tap-version: 0.0.2+version: 0.0.3 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 && <4.9- , tasty >= 0.10 && < 0.11+ , tasty >= 0.10 , stm , containers hs-source-dirs: src
test/Main.hs view
@@ -16,13 +16,10 @@ ------------------------------------------------------------------------------- ----TODO: actually make assertions main :: IO () main = do tmpDir <- getTemporaryDirectory defaultMain (tests tmpDir)- -- defaultMainWithIngredients [tapRunner] exampleTests -------------------------------------------------------------------------------