tasty-golden-2.3: Golden tests support for tasty

Safe HaskellNone
LanguageHaskell2010

Test.Tasty.Golden.Manage

Contents

Description

Previously, accepting tests (by the --accept flag) was done by this module, and there was an ingredient to handle that mode.

Now it's done as part of a normal test run. When the `--accept` flag is given, it makes golden tests to update the files whenever there is a mismatch. So you no longer need this module. It remains only for backwards compatibility.

Synopsis

Command line helpers

defaultMain :: TestTree -> IO () Source

This exists only for backwards compatibility. Use defaultMain instead.

The ingredient

acceptingTests :: Ingredient Source

This exists only for backwards compatibility. You don't need to include this anymore.

newtype AcceptTests Source

This option, when set to True, specifies that we should run in the «accept tests» mode

Constructors

AcceptTests Bool