-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhspec-server.cabal
63 lines (56 loc) · 2.06 KB
/
hspec-server.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
-- Initial hspec-server.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hspec-server
version: 0.4.1
synopsis: Test Framework for checking 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: [email protected]
stability: Experimental
category: Testing
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
bug-reports: https://github.com/junjihashimoto/hspec-server/issues
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/junjihashimoto/hspec-server.git
library
exposed-modules: Test.Hspec.Server
, Test.Hspec.Server.Core
, Test.Hspec.Server.ServerType
, Test.Hspec.Server.ServerStatus
, Test.Hspec.Server.NetworkStatus
, Test.Hspec.Server.CommandStatus
, Test.Hspec.Server.Util
-- 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: tests,dist/build/autogen
ghc-options: -Wall
build-depends: base
, hspec
, hspec-contrib
, hspec-server
, transformers
Default-Language: Haskell2010