packages feed

hcltest-0.3.7: hcltest.cabal

name: hcltest
version: 0.3.7
cabal-version: >=1.10
build-type: Custom
license: BSD3
license-file: LICENSE
copyright: Copyright (C) 2013-2015 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
    exposed-modules:
        Test.HClTest
        Test.HClTest.Program
        Test.HClTest.Monad
        Test.HClTest.Setup
        Test.HClTest.Trace
        Test.Tasty.HClTest
    build-depends:
        base >=4.5.1.0 && <4.9,
        bytestring >=0.9.2.1 && <0.11,
        text >=0.11.2.3 && <1.3,
        free >=4.5 && <4.13,
        process >=1.1.0.1 && <1.3,
        filepath >=1.3.0.0 && <1.5,
        transformers >=0.3.0.0 && <0.5,
        either >=4.1.1 && <4.5,
        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.12,
        tasty >=0.8.0.2 && <0.11,
        tagged >=0.7.1 && <0.9,
        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 && <0.12,
        monad-control >=1 && <1.1,
        transformers-base >=0.4.1 && <0.5
    default-language: Haskell2010
    other-extensions: TemplateHaskell
    hs-source-dirs: src
    ghc-options: -Wall

test-suite doctests
    type: exitcode-stdio-1.0
    main-is: doctests.hs
    build-depends:
        base >=4.5.1.0 && <4.9,
        directory >=1.1.0.2 && <1.3,
        doctest >=0.9.10.2 && <0.11,
        filepath >=1.3.0.0 && <1.5
    default-language: Haskell2010
    other-extensions: TemplateHaskell
    hs-source-dirs: tests
    ghc-options: -Wall -threaded