tasty-bdd 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+5/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- src/Test/Tasty/Bdd.hs +2/−3
- tasty-bdd.cabal +2/−2
README.md view
@@ -22,7 +22,7 @@ ## Example -```+```haskell import Test.Tasty.Bdd tests :: TestTree
src/Test/Tasty/Bdd.hs view
@@ -1,5 +1,3 @@---------------------------------------------------------------------------------------------------------------------------------------------------------------- {-# LANGUAGE DataKinds #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-}@@ -10,7 +8,7 @@ -- | -- Module : Test.Tasty.Bdd--- Copyright : (c) Paolo Veronelli, Pavlo Kerestey 2017+-- Copyright : (c) Paolo Veronelli, Pavlo Kerestey 2017-2020 -- License : All rights reserved -- Maintainer: paolo.veronelli@gmail.com -- Stability : experimental@@ -200,6 +198,7 @@ onEach op (WithResource spec rf) = WithResource spec $ onEach op . rf onEach op (AskOptions rf) = AskOptions $ onEach op . rf onEach op (PlusTestOptions g t) = PlusTestOptions g $ onEach op t+onEach op (After x y t) = After x y $ onEach op t -- | recursively append an action afterEach :: IO () -> TestTree -> TestTree
tasty-bdd.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 3d09fd3039a4f97cb691e80b9e53f939dca22e70237df9634d3c473be516a0de+-- hash: 2092064cb96d2bfbdd0184d0d9652a09a67bfeb44af393b1da2095d85d4e84a8 name: tasty-bdd-version: 0.1.0.0+version: 0.1.0.1 synopsis: BDD tests language and tasty provider description: https://gitlab.com/devs.global.de/tasty-bdd/-/blob/master/README.md category: Test