packages feed

hspec-server-0.2.2: hspec-server.cabal

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

name:                hspec-server
version:             0.2.2
synopsis:            Test Framework for Server's status
description:         Hspec-Server is test framework for checking server's status.
                     It is inspired by the Ruby library ServerSpec.
license:             BSD3
license-file:        LICENSE
author:              Junji Hashimoto
maintainer:          junji.hashimoto@gmail.com
stability:           Experimental
category:            Testing
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
        type:           git
        location:       https://github.com/junjihashimoto/hspec-server.git

library
  exposed-modules:     Test.Hspec.Server
                     , Test.Hspec.Server.Type
                     , Test.Hspec.Server.Core
                     , Test.Hspec.Server.ServerType
                     , Test.Hspec.Server.Command
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <5
                     , hspec >= 2
                     , hspec-core >= 2
                     , hspec-expectations
                     , transformers
                     , process
                     , temporary
                     , containers
                     , HUnit
                     , regex-posix
  -- hs-source-dirs:      
  default-language:    Haskell2010

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
                 , hspec
                 -- , hspec-contrib
                 , hspec-server
                 , transformers
    Default-Language:   Haskell2010