Popularity
6.3
Declining
Activity
0.0
Declining
6
5
6

Monthly Downloads: 12
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Testing     Hedgehog    
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.

Do you think we are missing an alternative of hedgehog-golden or a related project?

Add another 'hedgehog' Package

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