tasty-golden 2.3.1.1 → 2.3.1.2
raw patch · 3 files changed
+12/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- Test/Tasty/Golden.hs +3/−0
- tasty-golden.cabal +4/−1
CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 2.3.1.2+---------------++Docs: link to an introductory blog post+ Version 2.3.1.1 ---------------
Test/Tasty/Golden.hs view
@@ -1,4 +1,7 @@ {- |+To get started with golden testing and this library, see+<https://ro-che.info/articles/2017-12-04-golden-tests Introduction to golden testing>.+ This module provides a simplified interface. If you want more, see "Test.Tasty.Golden.Advanced".
tasty-golden.cabal view
@@ -1,5 +1,5 @@ name: tasty-golden-version: 2.3.1.1+version: 2.3.1.2 synopsis: Golden tests support for tasty description: This package provides support for «golden testing».@@ -7,6 +7,9 @@ A golden test is an IO action that writes its result to a file. To pass the test, this output file should be identical to the corresponding «golden» file, which contains the correct result for the test.++ To get started with golden testing and this library, see+ <https://ro-che.info/articles/2017-12-04-golden-tests Introduction to golden testing>. license: MIT license-file: LICENSE