packages feed

hcltest-0.3.6: hcltest.cabal

name: hcltest
version: 0.3.6
cabal-version: >=1.10
build-type: Custom
license: BSD3
license-file: LICENSE
copyright: Copyright (C) 2013 Benno Fünfstück
maintainer: Benno Fünfstück <benno.fuenfstueck@gmail.com>
stability: experimental
homepage: http://github.com/bennofs/hcltest/
bug-reports: http://github.com/bennofs/hcltest/issues
synopsis: A testing library for command line applications.
description:
    Allows to write tests for command line applications using haskell.
category: Testing
author: Benno Fünfstück
extra-source-files:
    .ghci
    .gitignore
    .travis.yml
    .vim.custom
    README.md

source-repository head
    type: git
    location: git://github.com/bennofs/hcltest.git

library
    build-depends:
        base >=4.5.1.0 && <4.8,
        bytestring >=0.9.2.1 && <0.11,
        text >=0.11.2.3 && <1.3,
        free >=4.5 && <4.10,
        process >=1.1.0.1 && <1.3,
        filepath >=1.3.0.0 && <1.4,
        transformers >=0.3.0.0 && <0.5,
        either >=4.1.1 && <4.4,
        directory >=1.1.0.2 && <1.3,
        dlist >=0.6.0.1 && <0.8,
        temporary >=1.2.0.1 && <1.3,
        mtl >=2.1.2 && <2.3,
        lens >=4.0.7 && <4.5,
        tasty >=0.8.0.2 && <0.11,
        tagged >=0.7.1 && <0.8,
        mmorph >=1.0.2 && <1.1,
        random-shuffle >=0.0.4 && <0.1,
        split >=0.2.1.1 && <0.3,
        stm ==2.4.*,
        optparse-applicative >=0.7.0.2,
        monad-control >=0.3.2.3 && <0.4,
        transformers-base >=0.4.1 && <0.5
    exposed-modules:
        Test.HClTest
        Test.HClTest.Program
        Test.HClTest.Monad
        Test.HClTest.Setup
        Test.HClTest.Trace
        Test.Tasty.HClTest
    exposed: True
    buildable: True
    default-language: Haskell2010
    hs-source-dirs: src
    ghc-options: -Wall
    other-extensions: TemplateHaskell
 
test-suite doctests
    build-depends:
        base >=4.5.1.0 && <4.8,
        directory >=1.1.0.2 && <1.3,
        doctest >=0.9.10.2 && <0.10,
        filepath >=1.3.0.0 && <1.4
     
    if impl(ghc <7.6.1)
        buildable: True
        ghc-options: -Werror
    type: exitcode-stdio-1.0
    main-is: doctests.hs
    buildable: True
    default-language: Haskell2010
    hs-source-dirs: tests
    ghc-options: -Wall -threaded
    other-extensions: TemplateHaskell