packages feed

sydtest-hedgehog 0.1.0.0 → 0.2.0.0

raw patch · 3 files changed

+10/−3 lines, 3 files

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.2.0.0] - 2022-04-28++### Added++* Compatibility with `sydtest >=0.10`+ ## [0.1.0.0] - 2022-04-13  ### Changed
src/Test/Syd/Hedgehog.hs view
@@ -7,6 +7,7 @@ module Test.Syd.Hedgehog (fromHedgehogGroup) where  import Control.Concurrent.STM+import Control.Exception import Control.Monad import qualified Data.Map as M import qualified Hedgehog@@ -117,7 +118,7 @@                 hedgehogReport             let Hedgehog.ShrinkCount shrinkCountInt = Hedgehog.failureShrinks failureReport                 numShrinks = Just $ fromIntegral shrinkCountInt-                exception = Just $ Left s+                exception = Just $ SomeException $ ExpectationFailed s                 inputs = map Hedgehog.failedValue $ Hedgehog.failureAnnotations failureReport             pure (TestFailed, exception, numTests, labels, numShrinks, inputs) -- TODO     let testRunResultRetries = Nothing
sydtest-hedgehog.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.6.+-- This file has been generated from package.yaml by hpack version 0.34.7. -- -- see: https://github.com/sol/hpack  name:           sydtest-hedgehog-version:        0.1.0.0+version:        0.2.0.0 synopsis:       A Hedgehog companion library for sydtest category:       Testing homepage:       https://github.com/NorfairKing/sydtest#readme