packages feed

test-simple-0.1.7: test-simple.cabal

Name:                test-simple
Version:             0.1.7
License:             BSD3
License-File:        COPYING
Copyright:           Boris Sukholitko, 2014
Author:              Boris Sukholitko
Maintainer:          boriss@gmail.com
Cabal-version:       >= 1.8
Build-type:          Simple
Category:            Testing
Synopsis:            Simple Perl inspired testing 
Description:
    Test.Simple provides simple, Perl inspired primitives for easy testing. It outputs test
    results in TAP format.
Extra-Source-Files:  changelog
Source-Repository head
    Type: git
    Location: https://github.com/bosu/test-simple

library 
  build-depends:  base < 5, mtl, template-haskell, state-plus >= 0.1.1 && < 0.2
                    , QuickCheck >= 2.7.6 && < 2.8
  hs-source-dirs:   src
  ghc-options:      -Wall
  exposed-modules:  Test.Simple

test-suite Main
  type:            exitcode-stdio-1.0
  build-depends:   base < 5, test-simple, process, executable-path, mtl
                    , QuickCheck >= 2.7.6 && < 2.8
  ghc-options:     -Wall
  hs-source-dirs:  tests
  main-is:         Main.hs