packages feed

tasty-quickcheck 0.3.1 → 0.8

raw patch · 3 files changed

+14/−10 lines, 3 filesdep ~tasty

Dependency ranges changed: tasty

Files

+ CHANGELOG view
@@ -0,0 +1,1 @@+See https://github.com/feuerbach/tasty/blob/master/CHANGES.md
Test/Tasty/QuickCheck.hs view
@@ -103,13 +103,11 @@     r <- QC.quickCheckWithResult args prop      return $-      Result-        { resultSuccessful = successful r-        , resultDescription =-            if unexpected r-              then QC.output r ++ reproduceMsg r-              else QC.output r-        }+      (if successful r then testPassed else testFailed)+      (if unexpected r+         then QC.output r ++ reproduceMsg r+         else QC.output r+      )  successful :: QC.Result -> Bool successful r =
tasty-quickcheck.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                tasty-quickcheck-version:             0.3.1+version:             0.8 synopsis:            QuickCheck support for the Tasty test framework. description:         QuickCheck support for the Tasty test framework. license:             MIT@@ -12,13 +12,18 @@ -- copyright:            category:            Testing build-type:          Simple--- extra-source-files:  +extra-source-files:  CHANGELOG cabal-version:       >=1.10 +Source-repository head+  type:     git+  location: git://github.com/feuerbach/tasty.git+  subdir:   quickcheck+ library   exposed-modules:     Test.Tasty.QuickCheck   -- other-modules:          other-extensions:    GeneralizedNewtypeDeriving, DeriveDataTypeable-  build-depends:       base == 4.*, tasty, QuickCheck >= 2.5 && < 3, tagged, random+  build-depends:       base == 4.*, tasty >= 0.8, QuickCheck >= 2.5 && < 3, tagged, random   -- hs-source-dirs:         default-language:    Haskell2010