packages feed

quickcheck-special-0.1.0.5: quickcheck-special.cabal

-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:           quickcheck-special
version:        0.1.0.5
synopsis:       Edge cases and special values for QuickCheck Arbitrary instances
description:    The standard Arbitrary instances of QuickCheck don't generate special values. This is fixed by this package which provides the newtype Special with an Arbitrary instance. The special values are given by the SpecialValues typeclass.
category:       Testing
homepage:       https://github.com/minad/quickcheck-special#readme
bug-reports:    https://github.com/minad/quickcheck-special/issues
author:         Daniel Mendler <mail@daniel-mendler.de>
maintainer:     Daniel Mendler <mail@daniel-mendler.de>
copyright:      2016 Daniel Mendler
license:        MIT
license-file:   LICENSE
tested-with:    GHC == 7.2.2, GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
build-type:     Simple
cabal-version:  >= 1.10

source-repository head
  type: git
  location: https://github.com/minad/quickcheck-special

library
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base < 6
    , bytestring >= 0.9 && < 0.11
    , QuickCheck >= 2.1 && < 2.11
    , scientific >= 0.2 && < 0.4
    , text       >= 0.7 && < 1.3
    , ieee754    >= 0.8 && < 0.9
  if impl(ghc < 7.10)
    build-depends:
        nats >= 1
  exposed-modules:
      Test.QuickCheck.Special
  default-language: Haskell2010