test-framework-quickcheck2 0.3.0.1 → 0.3.0.2
raw patch · 2 files changed
+12/−6 lines, 2 filesdep ~QuickChecknew-uploader
Dependency ranges changed: QuickCheck
Files
Test/Framework/Providers/QuickCheck2.hs view
@@ -73,7 +73,7 @@ args = stdArgs { replay = Just (gen, 0) -- NB: the 0 is the saved size. Defaults to 0 if you supply "Nothing" for "replay". , maxSuccess = max_success #if MIN_VERSION_QuickCheck(2,5,0)- , maxDiscardRatio = max_discard `div` max_success+ , maxDiscardRatio = (max_discard `div` max_success) + 1 #else , maxDiscard = max_discard #endif
test-framework-quickcheck2.cabal view
@@ -1,14 +1,16 @@ Name: test-framework-quickcheck2-Version: 0.3.0.1-Cabal-Version: >= 1.2.3+Version: 0.3.0.2+Cabal-Version: >= 1.6 Category: Testing Synopsis: QuickCheck2 support for the test-framework package. License: BSD3 License-File: LICENSE Author: Max Bolingbroke <batterseapower@hotmail.com>-Maintainer: Max Bolingbroke <batterseapower@hotmail.com>-Homepage: http://batterseapower.github.com/test-framework/+Maintainer: Haskell Libraries <libraries@haskell.org>+Homepage: https://batterseapower.github.io/test-framework/+Bug-Reports: https://github.com/haskell/test-framework/ Build-Type: Simple+Description: QuickCheck2 support for the test-framework package. Flag Base4 Description: Choose base version 4@@ -22,7 +24,7 @@ Library Exposed-Modules: Test.Framework.Providers.QuickCheck2 - Build-Depends: test-framework >= 0.7.1, QuickCheck >= 2.4 && < 2.6, extensible-exceptions >= 0.1.1 && < 0.2.0+ Build-Depends: test-framework >= 0.7.1, QuickCheck >= 2.4 && < 2.7, extensible-exceptions >= 0.1.1 && < 0.2.0 if flag(base3) Build-Depends: base >= 3 && < 4, random >= 1 else@@ -36,3 +38,7 @@ CPP Ghc-Options: -Wall++Source-Repository head+ Type: git+ Location: https://github.com/haskell/test-framework