Popularity
5.2
Growing
Activity
1.4
-
5
1
5
Monthly Downloads: 1
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v1.0.0
hedgehog-golden alternatives and similar packages
Based on the "hedgehog" category.
Alternatively, view hedgehog-golden alternatives based on common mentions on social networks and blogs.
-
hedgehog-servant
Hedgehog property testing for Servant APIs
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of hedgehog-golden or a related project?
README
Hedgehog Golden
A golden file extension to hedgehog
Hedgehog support
Hedgehog v1.x series is supported by hedgehog-golden v1.x series
Hedgehog v0.6.x series is supported by hedgehog-golden v0.6.x series
Example
{-# LANGUAGE TemplateHaskell #-}
import Hedgehog
import qualified Hedgehog.Gen as Gen
import qualified Hedgehog.Golden.Aeson as Aeson
-- | A golden test for characters in the hex range
prop_char_golden :: Property
prop_char_golden =
Aeson.goldenProperty Gen.hexit
tests :: IO Bool
tests =
checkParallel $$discover