tasty-silver 3.1.8 → 3.1.8.1
raw patch · 4 files changed
+4/−3 lines, 4 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Test/Tasty/Silver.hs +1/−1
- Test/Tasty/Silver/Interactive.hs +1/−0
- Test/Tasty/Silver/Internal.hs +1/−1
- tasty-silver.cabal +1/−1
Test/Tasty/Silver.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE TypeSynonymInstances, FlexibleInstances, OverloadedStrings #-} {-# LANGUAGE CPP #-} {- |-This module provides a simplified interface. If you want more, see "Test.Tasty.Golden.Advanced".+This module provides a simplified interface. If you want more, see "Test.Tasty.Silver.Advanced". Note about filenames. They are looked up in the usual way, thus relative names are relative to the processes current working directory.
Test/Tasty/Silver/Interactive.hs view
@@ -5,6 +5,7 @@ {-# LANGUAGE BangPatterns #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE CPP #-}+{-# LANGUAGE FlexibleContexts #-} -- | Golden test management, interactive mode. Runs the tests, and asks -- the user how to proceed in case of failure or missing golden standard. module Test.Tasty.Silver.Interactive
Test/Tasty/Silver/Internal.hs view
@@ -118,7 +118,7 @@ (GRDifferent a b c d) -> return $ GRDifferent a b c d (GREqual) -> return GREqual -instance forall m . Show (GoldenResult' m) where+instance Show (GoldenResult' m) where show GREqual = "GREqual" show (GRDifferent {}) = "GRDifferent" show (GRNoGolden {}) = "GRNoGolden"
tasty-silver.cabal view
@@ -1,5 +1,5 @@ name: tasty-silver-version: 3.1.8+version: 3.1.8.1 synopsis: A fancy test runner, including support for golden tests. description: This package provides a fancy test runner and support for «golden testing».