hspec-smallcheck 0.1.0 → 0.2.0
raw patch · 2 files changed
+6/−5 lines, 2 filesdep +QuickCheckdep ~hspec
Dependencies added: QuickCheck
Dependency ranges changed: hspec
Files
hspec-smallcheck.cabal view
@@ -1,5 +1,5 @@ name: hspec-smallcheck-version: 0.1.0+version: 0.2.0 license: MIT license-file: LICENSE copyright: (c) 2013 Simon Hengel@@ -7,7 +7,6 @@ build-type: Simple cabal-version: >= 1.8 category: Testing-stability: experimental bug-reports: https://github.com/hspec/hspec-smallcheck/issues homepage: http://hspec.github.io/ synopsis: SmallCheck support for the Hspec testing framework@@ -26,7 +25,7 @@ Test.Hspec.SmallCheck build-depends: base == 4.*- , hspec >= 1.7+ , hspec >= 1.8 , smallcheck >= 1.0 test-suite spec@@ -40,6 +39,8 @@ Spec.hs build-depends: base == 4.*+ , hspec , smallcheck+ , hspec-smallcheck- , hspec+ , QuickCheck
src/Test/Hspec/SmallCheck.hs view
@@ -12,7 +12,7 @@ property = test instance Example (Property IO) where- evaluateExample c p = do+ evaluateExample p c _ = do counter <- newIORef 0 let hook _ = do modifyIORef counter succ