test-framework-quickcheck2 0.2.12.4 → 0.3.0
raw patch · 2 files changed
+4/−1 lines, 2 filesdep ~test-framework
Dependency ranges changed: test-framework
Files
Test/Framework/Providers/QuickCheck2.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DeriveDataTypeable #-} -- | Allows QuickCheck2 properties to be used with the test-framework package. -- -- For an example of how to use test-framework, please see <http://github.com/batterseapower/test-framework/raw/master/example/Test/Framework/Example.lhs>@@ -18,6 +19,7 @@ import qualified Control.Exception.Extensible as E import Data.IORef+import Data.Typeable import System.Random import Unsafe.Coerce @@ -68,6 +70,7 @@ data Property = forall a. Testable a => Property a+ deriving Typeable instance Testlike PropertyTestCount PropertyResult Property where runTest topts (Property testable) = runProperty topts testable
test-framework-quickcheck2.cabal view
@@ -1,5 +1,5 @@ Name: test-framework-quickcheck2-Version: 0.2.12.4+Version: 0.3.0 Cabal-Version: >= 1.2.3 Category: Testing Synopsis: QuickCheck2 support for the test-framework package.