packages feed

hspec-test-sandbox-0.1.0: hspec-test-sandbox.cabal

-- Initial hspec-test-sandbox.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                hspec-test-sandbox
version:             0.1.0
synopsis:            Hspec convenience functions for use with test-sandbox
description:         This package provides useful functions to write around the Test.Hspec unit-test functions,
                     allowing them to be used easily in the Test.Sandbox monad provided by the test-sandbox package.
license:             BSD3
license-file:        LICENSE
author:              Junji Hashimoto
maintainer:          junji.hashimoto@gmail.com
-- copyright:           
category:            Testing
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Test.Hspec.Sandbox
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <5
                     , test-sandbox
                     , hspec-core >= 2
                     , hspec >= 2
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite test
    type:              exitcode-stdio-1.0
    main-is:           test.hs
    hs-source-dirs:    test,dist/build/autogen
    ghc-options:       -Wall

    build-depends: base
                 , test-sandbox
                 , hspec >= 2
                 , hspec-test-sandbox
    Default-Language:   Haskell2010