packages feed

quickcheck-assertions 0.1.1 → 0.2.0

raw patch · 2 files changed

+7/−7 lines, 2 files

Files

Test/QuickCheck/Assertions.hs view
@@ -46,6 +46,7 @@ Ok, not very well printed, but better than nothing. -} module Test.QuickCheck.Assertions (+  -- * Assertions   binAsrt   , (?==)   , (==?)@@ -61,6 +62,8 @@   , (?<=)   , (~==?)   , (?~==)+  -- * Reexports+  , Result   ) where  import Test.QuickCheck.Property
quickcheck-assertions.cabal view
@@ -1,15 +1,12 @@--- Initial quickcheck-assertions.cabal generated by cabal init.  For --- further documentation, see http://haskell.org/cabal/users-guide/- name:                quickcheck-assertions-version:             0.1.1+version:             0.2.0 synopsis:            HUnit like assertions for QuickCheck description:         Library with convenient assertions for QuickCheck properties like in HUnit license:             LGPL-3 license-file:        LICENSE author:              Aleksey Uymanov maintainer:          s9gf4ult@gmail.com--- copyright:           +-- copyright: category:            Testing build-type:          Simple cabal-version:       >=1.8@@ -17,11 +14,11 @@ source-repository head   type:           git   location:       git://github.com/s9gf4ult/quickcheck-assertions.git-   + library   exposed-modules:     Test.QuickCheck.Assertions-  -- other-modules:       +  -- other-modules:   build-depends:       base == 4.*                      , QuickCheck >= 2.3                      , ieee754