hspec 2.1.6 → 2.1.7
raw patch · 2 files changed
+4/−3 lines, 2 filesdep ~hspec-coredep ~hspec-discoverPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hspec-core, hspec-discover
API changes (from Hackage documentation)
+ Test.Hspec: beforeAll_ :: IO () -> SpecWith a -> SpecWith a
Files
- hspec.cabal +3/−3
- src/Test/Hspec.hs +1/−0
hspec.cabal view
@@ -1,5 +1,5 @@ name: hspec-version: 2.1.6+version: 2.1.7 license: MIT license-file: LICENSE copyright: (c) 2011-2015 Simon Hengel,@@ -41,8 +41,8 @@ src build-depends: base == 4.*- , hspec-core == 2.1.6- , hspec-discover == 2.1.6+ , hspec-core == 2.1.7+ , hspec-discover == 2.1.7 , hspec-expectations == 0.6.1.* , transformers >= 0.2.2.0 , QuickCheck >= 2.5.1
src/Test/Hspec.hs view
@@ -33,6 +33,7 @@ , before_ , beforeWith , beforeAll+, beforeAll_ , after , after_ , afterAll