name: quickcheck-assertions
version: 0.3.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:
category: Testing
build-type: Simple
cabal-version: >=1.8
homepage: https://github.com/s9gf4ult/quickcheck-assertions
extra-source-files: CHANGELOG.md
, README.md
source-repository head
type: git
location: git://github.com/s9gf4ult/quickcheck-assertions.git
library
exposed-modules: Test.QuickCheck.Assertions
-- other-modules:
build-depends: QuickCheck >= 2.3
, base == 4.*
, ieee754
, pretty-show
ghc-options: -Wall
test-suite main
type: exitcode-stdio-1.0
build-depends: base == 4.*
, QuickCheck >= 2.3
, hspec
, quickcheck-assertions
, ieee754
ghc-options: -Wall -rtsopts
hs-source-dirs: tests
main-is: main.hs