tasty-checklist 1.0.9.0 → 1.0.10.0
raw patch · 3 files changed
+9/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- src/Test/Tasty/Checklist.hs +4/−2
- tasty-checklist.cabal +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for tasty-checklist +## 1.0.10.0 -- 2926-06-22++ * Fix to support GHC9.14 (doctests updated for new exception output format).+ ## 1.0.9.0 -- 2026-04-28 * Update support for parameterized-utils to support version 2.3.
src/Test/Tasty/Checklist.hs view
@@ -174,7 +174,8 @@ -- >>> check "7 is odd" odd (7 :: Int) -- >>> :} -- odd numbers: FAIL--- Exception: ERROR: odds+-- ...+-- ... ERROR: odds -- 2 checks failed in this checklist: -- -Failed check 'two is odd' with: 2 -- -Failed check '7 + 3 is odd' with: 10@@ -292,7 +293,8 @@ -- -- >>> defaultMain test -- someFun result: FAIL--- Exception: ERROR: results for someFun+-- ...+-- ... ERROR: results for someFun -- 3 checks failed in this checklist: -- --- Input for below: The answer to the universe is 18? -- -Failed check: foo
tasty-checklist.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: tasty-checklist-version: 1.0.9.0+version: 1.0.10.0 synopsis: Check multiple items during a tasty test description: Allows the test to check a number of items during a test and