tasty-hedgehog-0.2.0.0: Integration for tasty and hedgehog.

Safe HaskellNone
LanguageHaskell2010

Test.Tasty.Hedgehog

Contents

Description

This package lets you test Hedgehog properties with tasty.

Typical usage would look like this:

testGroup "tasty-hedgehog tests" [
   testProperty "reverse involutive" prop_reverse_involutive
 , testProperty "sort idempotent"    prop_sort_idempotent
 ]
Synopsis

Documentation

testProperty :: TestName -> Property -> TestTree #

Create a Test from a Hedgehog property

Options you can pass in via tasty

newtype HedgehogReplay #

The replay token to use for replaying a previous test run

Constructors

HedgehogReplay (Maybe (Size, Seed))