sydtest 0.8.0.0 → 0.8.0.1
raw patch · 3 files changed
+10/−3 lines, 3 files
Files
- CHANGELOG.md +6/−0
- src/Test/Syd/Output.hs +2/−1
- sydtest.cabal +2/−2
CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.8.0.1] - 2022-02-11++### Changed++* Fixed property tests without labels still showing labels in the output.+ ## [0.8.0.0] - 2022-02-11 ### Changed
src/Test/Syd/Output.hs view
@@ -214,7 +214,8 @@ labelsChunks :: Word -> Maybe (Map [String] Int) -> [[Chunk]] labelsChunks _ Nothing = [] labelsChunks totalCount (Just labels)- | M.size labels < 1 = []+ | M.null labels = []+ | map fst (M.toList labels) == [[]] = [] | otherwise = [chunk "Labels"] : map
sydtest.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: sydtest-version: 0.8.0.0+version: 0.8.0.1 synopsis: A modern testing framework for Haskell with good defaults and advanced testing features. description: A modern testing framework for Haskell with good defaults and advanced testing features. Sydtest aims to make the common easy and the hard possible. See https://github.com/NorfairKing/sydtest#readme for more information. category: Testing@@ -13,7 +13,7 @@ bug-reports: https://github.com/NorfairKing/sydtest/issues author: Tom Sydney Kerckhove maintainer: syd@cs-syd.eu-copyright: Copyright (c) 2020-2021 Tom Sydney Kerckhove+copyright: Copyright (c) 2020-2022 Tom Sydney Kerckhove license: OtherLicense license-file: LICENSE.md build-type: Simple