packages feed

cabal-test-quickcheck-0.1.2: cabal-test-quickcheck.cabal

name:          cabal-test-quickcheck
version:       0.1.2
homepage:      https://github.com/zimothy/cabal-test-quickcheck
license:       MIT
license-file:  LICENSE
author:        Timothy Jones
maintainer:    Timothy Jones <git@zimothy.com>
copyright:     (c) 2013 Timothy Jones
category:      Testing
build-type:    Simple
cabal-version: >=1.10
synopsis:      QuickCheck for Cabal
description:
  Support for QuickCheck with the 'detailed' Cabal testing interface.

library
  hs-source-dirs:   src
  default-language: Haskell2010

  ghc-options: -Wall

  exposed-modules:
    Distribution.TestSuite.QuickCheck

  build-depends:
    base       >= 4.6.0  && < 4.8,
    Cabal      >= 1.16.0 && < 1.21,
    QuickCheck >= 2.6    && < 2.8

test-suite example
  type:        detailed-0.9
  test-module: Example

  hs-source-dirs:   test
  default-language: Haskell2010

  build-depends:
    base  >= 4.6  && < 4.8,
    Cabal >= 1.20 && < 1.21,
    cabal-test-quickcheck

source-repository head
  type:     git
  location: git://github.com/zmthy/cabal-test-quickcheck.git