registry-hedgehog 0.6.0.0 → 0.7.0.0
raw patch · 2 files changed
+7/−7 lines, 2 filesdep ~basedep ~registryPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, registry
API changes (from Hackage documentation)
- Test.Tasty.Hedgehogx: Rec :: K1 R a x -> Rec p a (x :: k)
- Test.Tasty.Hedgehogx: [unRec] :: Rec p a (x :: k) -> K1 R a x
- Test.Tasty.Hedgehogx: bmap :: FunctorB b => (forall (a :: k). () => f a -> g a) -> b f -> b g
- Test.Tasty.Hedgehogx: btraverse :: (TraversableB b, Applicative e) => (forall (a :: k). () => f a -> e (g a)) -> b f -> e (b g)
- Test.Tasty.Hedgehogx: class FunctorB (b :: k -> Type -> Type)
- Test.Tasty.Hedgehogx: class FunctorB b => TraversableB (b :: k -> Type -> Type)
- Test.Tasty.Hedgehogx: infix 4 ===
- Test.Tasty.Hedgehogx: newtype Rec p a (x :: k)
- Test.Tasty.Hedgehogx: type family GenBase (m :: Type -> Type) :: Type -> Type;
+ Test.Tasty.Hedgehogx: type family GenBase (m :: Type -> Type) :: Type -> Type
Files
registry-hedgehog.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 6a7d709328017b52e337399c103ca4bb6188933c06bdd3cb5e3e608bae7f2c38+-- hash: a80c02532509f28abbb98896582e06adf5292368eac375ffda75cac41fbdb195 name: registry-hedgehog-version: 0.6.0.0+version: 0.7.0.0 synopsis: utilities to work with Hedgehog generators and `registry` description: This library provides some functions to extract generators from a "Registry" and make stateful modifications of that Registry to precisely control the generation of data category: Control@@ -62,13 +62,13 @@ TypeOperators ghc-options: -Wall -Wcompat -Wincomplete-record-updates -fhide-source-paths -fprint-potential-instances -fno-warn-partial-type-signatures -optP-Wno-nonportable-include-path -Wincomplete-uni-patterns build-depends:- base >=4.7 && <5+ base >=4.14 && <5 , containers >=0.2 && <1 , hedgehog >=1.0 && <2 , mmorph ==1.* , multimap ==1.* , protolude ==0.3.*- , registry ==0.2.*+ , registry >=0.2 && <0.4 , tasty ==1.* , tasty-discover >=2 && <5 , tasty-hedgehog >=1.0 && <2.0@@ -127,13 +127,13 @@ TypeOperators ghc-options: -Wall -Wcompat -Wincomplete-record-updates -fhide-source-paths -fprint-potential-instances -fno-warn-partial-type-signatures -optP-Wno-nonportable-include-path -threaded -rtsopts -with-rtsopts=-N -fno-warn-orphans -fno-warn-missing-signatures -fno-warn-incomplete-uni-patterns -fno-warn-type-defaults -optP-Wno-nonportable-include-path build-depends:- base >=4.7 && <5+ base >=4.14 && <5 , containers >=0.2 && <1 , hedgehog >=1.0 && <2 , mmorph ==1.* , multimap ==1.* , protolude ==0.3.*- , registry ==0.2.*+ , registry >=0.2 && <0.4 , registry-hedgehog , tasty ==1.* , tasty-discover >=2 && <5
src/Test/Tasty/Hedgehogx.hs view
@@ -65,7 +65,7 @@ prop :: HasCallStack => TestName -> PropertyT IO () -> TestTree prop name p = let aModuleName = getModuleName- in withFrozenCallStack . localOption (ModuleName (toS aModuleName)) $+ in withFrozenCallStack $ localOption (ModuleName (toS aModuleName)) $ testProperty name (Hedgehog.property p) -- | Create a Tasty test from a Hedgehog property called only once