packages feed

tdd-util-0.1.0.1: tdd-util.cabal

name:                  tdd-util
version:               0.1.0.1
cabal-version:         >= 1.10
build-type:            Simple
license:               BSD3
license-file:          LICENSE
copyright:             Copyright (c) 2012 Byron James Johnson
author:                Byron James Johnson
maintainer:            Byron James Johnson <ByronJohnsonFP@gmail.com>
synopsis:              Utilities for TDD with test-framework, HUnit, and QuickCheck
description:
  This library provides utility functions for TDD in the manner of "MissingH".
  .
  This package contains a test suite that is an excellent example of using
  this library and may be cargo culted to save time starting TDD on a new
  project.
category:              Testing
tested-with:           GHC == 7.6.1

library
  default-language: Haskell2010
  hs-source-dirs: src
  ghc-options: -Wall
  default-extensions:
    GADTs
   ,TemplateHaskell
   ,DeriveDataTypeable
  build-depends:
    base         >= 4 && < 6
   ,lens
   ,transformers
   ,tagged
   ,random
   ,process
   ,time
   ,parallel-io
   ,MonadCatchIO-transformers
   ,HUnit
   ,QuickCheck   >= 2 && < 3
   ,test-framework
   ,test-framework-hunit
   ,test-framework-quickcheck2
  exposed-modules:
    Test.Util
   ,Test.Util.Framework

test-suite tdd-util-tests
  type: exitcode-stdio-1.0
  default-language: Haskell2010
  hs-source-dirs: testsrc, src
  ghc-options: -Wall -threaded
  main-is: Main.hs
  default-extensions:
    GADTs
   ,TemplateHaskell
   ,DeriveDataTypeable
  build-depends:
    base         >= 4 && < 6
   ,lens
   ,transformers
   ,tagged
   ,random
   ,process
   ,time
   ,parallel-io
   ,MonadCatchIO-transformers
   ,HUnit
   ,QuickCheck   >= 2 && < 3
   ,test-framework
   ,test-framework-hunit
   ,test-framework-quickcheck2
  other-modules:
    Tests
   ,Test.Test.Util
   ,Test.Test.Util.Framework

source-repository head
    type:     git
    location: git://github.com/bairyn/tdd-util.git
    tag:      0.1.0.1