packages feed

hspec-core 2.1.4 → 2.1.5

raw patch · 2 files changed

+4/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

hspec-core.cabal view
@@ -1,5 +1,5 @@ name:             hspec-core-version:          2.1.4+version:          2.1.5 license:          MIT license-file:     LICENSE copyright:        (c) 2011-2014 Simon Hengel,
src/Test/Hspec/Core/Example.hs view
@@ -88,6 +88,9 @@         QC.Failure {QC.output = m}  -> fromMaybe (Fail $ sanitizeFailureMessage r) (parsePending m)         QC.GaveUp {QC.numTests = n} -> Fail ("Gave up after " ++ pluralize n "test" )         QC.NoExpectedFailure {}     -> Fail ("No expected failure")+#if MIN_VERSION_QuickCheck(2,8,0)+        QC.InsufficientCoverage {}  -> Fail ("Insufficient coverage")+#endif     where       qcProgressCallback = QCP.PostTest QCP.NotCounterexample $         \st _ -> progressCallback (QC.numSuccessTests st, QC.maxSuccessTests st)