-- Initial quickcheck-assertions.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: quickcheck-assertions
version: 0.1.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
source-repository head
type: git
location: git://github.com/s9gf4ult/quickcheck-assertions.git
library
exposed-modules: Test.QuickCheck.Assertions
-- other-modules:
build-depends: base == 4.*
, QuickCheck >= 2.3
, ieee754
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