tasty-quickcheck 0.1 → 0.2
raw patch · 2 files changed
+17/−1 lines, 2 files
Files
- Test/Tasty/QuickCheck.hs +16/−0
- tasty-quickcheck.cabal +1/−1
Test/Tasty/QuickCheck.hs view
@@ -3,11 +3,27 @@ module Test.Tasty.QuickCheck ( testProperty , QuickCheckTests(..)+ , module Test.QuickCheck ) where import Test.Tasty.Providers import Test.Tasty.Options import qualified Test.QuickCheck as QC+import Test.QuickCheck hiding -- for re-export+ ( quickCheck+ , Args(..)+ , Result+ , stdArgs+ , quickCheckWith+ , quickCheckWithResult+ , quickCheckResult+ , verboseCheck+ , verboseCheckWith+ , verboseCheckWithResult+ , verboseCheckResult+ , verbose+ , Gen+ ) import Data.Typeable import Data.Proxy import Text.Printf
tasty-quickcheck.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: tasty-quickcheck-version: 0.1+version: 0.2 synopsis: QuickCheck support for the Tasty test framework. description: QuickCheck support for the Tasty test framework. license: MIT