name: QuickCheckVariant
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.0.1
synopsis: Generator of "valid" and "invalid" data in a type class
description: Generator of "valid" and "invalid" data in a type class
homepage: https://github.com/sanjorgek/QuickCheckVariant
license: GPL-3
license-file: LICENSE
author: Jorge Santiago Alvarez Cuadros
maintainer: sanjorgek@ciencias.unam.mx
bug-reports: https://github.com/sanjorgek/QuickCheckVariant/issues
copyright: (c) Jorge Santiago Alvarez Cuadros
category: Testing
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: git@github.com:sanjorgek/QuickCheckVariant.git
library
exposed-modules: Test.QuickCheck.Variant
-- other-modules:
-- other-extensions:
build-depends: base >4.6 && <5
, QuickCheck >2.10 && <2.12
hs-source-dirs: src
default-language: Haskell98
test-suite variant
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: VariantTest.hs
--other-modules:
build-depends: base
, hspec >2.3 && <2.5
, QuickCheck >2.10 && <2.12
, QuickCheckVariant
default-language: Haskell2010