packages feed

hspecVariant-1.0.0.0: hspecVariant.cabal

name:                hspecVariant
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             1.0.0.0
synopsis:            Spec for testing properties for variant types
description:         Spec for testing properties for variant types. Uses QuickCheckVariant
                     package.
homepage:            https://github.com/sanjorgek/hspecVariant
license:             GPL-3
license-file:        LICENSE
author:              Jorge Santiago Alvarez Cuadros
maintainer:          sanjorgek@ciencias.unam.mx
bug-reports:         https://github.com/sanjorgek/hspecVariant/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/hspecVariant.git

library
  exposed-modules:     Test.Hspec.Variant
  -- other-modules:
  -- other-extensions:
  build-depends:       base >=4.6 && <5
                       , QuickCheckVariant >=1 && <2
                       , hspec >=2.2 && <3
  hs-source-dirs:      src
  default-language:    Haskell98