cabal-detailed-quickcheck 0.1.1.2 → 0.1.1.3
raw patch · 3 files changed
+9/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−2
- cabal-detailed-quickcheck.cabal +2/−2
- lib/Distribution/TestSuite/QuickCheck.hs +1/−1
CHANGELOG.md view
@@ -1,10 +1,14 @@ # Revision history for cabal-detailed-quickcheck -## 0.1.1.2 — 2022-04-25+### 0.1.1.3 — 2022-04-25 * Improved documentation. -## 0.1.1.1 — 2022-04-25+### 0.1.1.2 — 2022-04-25++* Improved documentation.++### 0.1.1.1 — 2022-04-25 * Improved packaging.
cabal-detailed-quickcheck.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: cabal-detailed-quickcheck-version: 0.1.1.2+version: 0.1.1.3 synopsis: QuickCheck for Cabal tests description: Turn QuickCheck properties into detailed Cabal tests homepage: https://github.com/schuelermine/cabal-detailed-quickcheck@@ -30,4 +30,4 @@ source-repository this type: git location: https://github.com/schuelermine/cabal-detailed-quickcheck.git- tag: 0.1.1.2+ tag: 0.1.1.3
lib/Distribution/TestSuite/QuickCheck.hs view
@@ -338,6 +338,6 @@ getPropertyTests :: QC.Testable prop => [PropertyTest prop] -> [T.Test] getPropertyTests = (getPropertyTest <$>) --- | Get a named test group from a list of 'PropertyTests's. These are assumed to be able to run in parallel. See 'T.testGroup' and 'T.Group'.+-- | Get a named test group from a list of 'PropertyTest's. These are assumed to be able to run in parallel. See 'T.testGroup' and 'T.Group'. propertyTestGroup :: QC.Testable prop => String -> [PropertyTest prop] -> T.Test propertyTestGroup name = T.testGroup name . getPropertyTests