packages feed

QuickCheckVariant-1.0.1.0: QuickCheckVariant.cabal

name:                QuickCheckVariant
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             1.0.1.0
synopsis:            Valid and Invalid generator
description:         "Valid" and "Invalid" data generator with 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.3 && <5
                       , QuickCheck >=2.12 && <2.15
  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 >4.3 && <5
                       , hspec >2.3 && <2.9
                       , QuickCheck >=2.12 && <2.15
                       , QuickCheckVariant
  default-language:    Haskell2010

benchmark variantBench
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             VariantTest.hs
  --other-modules:
  build-depends:       base >4.3 && <5
                       , hspec >2.3 && <2.9
                       , QuickCheck >=2.12 && <2.15
                       , QuickCheckVariant
  default-language:    Haskell2010