packages feed

test-framework-sandbox-0.1.1: test-framework-sandbox.cabal

Name:           test-framework-sandbox
Version:        0.1.1
Cabal-Version:  >= 1.14
Category:       Testing
Synopsis:       test-sandbox support for the test-framework package
Description:    Interfaces the test-sandbox with the test-framework packages to allow writing system tests
                in Haskell in a standard fashion.
                .
                The environment is preserved between test cases. This enables the user, for instance, to start
                a process in one test and stop it in another.
                .
                Usage examples can be found on the github page:
                <http://gree.github.io/haskell-test-sandbox/>
                .
                A full example project is available at:
                <https://git.github.com/benjamin-surma/flare-tests/>
                .
                Extensive documentation is available in the source code itself.
License:        BSD3
License-File:   LICENSE
Author:         Benjamin Surma <benjamin.surma@gmail.com>
Maintainer:     Benjamin Surma <benjamin.surma@gmail.com>
Build-Type:     Simple
Homepage:       http://gree.github.io/haskell-test-sandbox/
Bug-Reports:    https://github.com/gree/haskell-test-sandbox/issues
Source-Repository head
    Type:       git
    Location:   https://github.com/gree/haskell-test-sandbox
Source-Repository this
    Type:       git
    Location:   https://github.com/gree/haskell-test-sandbox
    Tag:        test-framework-sandbox_0.1.1

Library
    Exposed-modules:    Test.Framework.Providers.Sandbox
                        Test.Framework.Providers.Sandbox.Internals

    Build-Depends:      base >=4 && <5, ansi-terminal, lifted-base, mtl,
                        temporary, test-framework >=0.8.0.3, test-sandbox >= 0.1.7,
                        transformers

    Hs-source-dirs:     src

    Default-Language:   Haskell2010

    ghc-options:       -Wall

Test-Suite test
  Ghc-Options:     -threaded
  Type:            exitcode-stdio-1.0
  Build-Depends:   base >=4 && <5
                 , HUnit
                 , test-framework >= 0.8.0.3
                 , test-framework-sandbox == 0.1.*
                 , test-sandbox >= 0.1.7
                 , test-sandbox-hunit == 0.1.*
  Main-Is:         test/test.hs