-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasty-req.cabal
74 lines (70 loc) · 1.96 KB
/
tasty-req.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
64
65
66
67
68
69
70
71
72
73
74
cabal-version: 2.2
name: tasty-req
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Ben Sinclair
maintainer: ben.d.sinclair@gmail.com
copyright: Copyright (C) 2018 Ben Sinclair
category: Testing, Web
build-type: Simple
extra-source-files: CHANGELOG.md
common lang
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Widentities
-Wmissing-export-lists
-Wredundant-constraints
-Wtabs
-Wtype-defaults
common deps
build-depends:
base >= 4.11 && < 4.12,
bytestring >= 0.10,
containers >= 0.5.11,
data-default >= 0.7.1,
http-client >= 0.5.13,
ieee754 >= 0.8.0,
lens >= 4.17,
megaparsec >= 7.0.1,
MonadRandom >= 0.5.1,
mtl >= 2.2.2,
parser-combinators >= 1.0.0,
pretty >= 1.1.3.6,
pretty-show >= 1.7,
random >= 1.1,
recursion >= 1.2.1,
req >= 1.1.0,
tasty >= 1.1.0,
text >= 1.2.3,
transformers >= 0.5.5,
transformers-either >= 0.1.1,
validation >= 1
library
import: lang, deps
exposed-modules:
Test.Tasty.Req
Test.Tasty.Req.Parse
Test.Tasty.Req.Parse.Common
Test.Tasty.Req.Parse.JSON
Test.Tasty.Req.PPrint
Test.Tasty.Req.PPrint.JSON
Test.Tasty.Req.Runner
Test.Tasty.Req.Types
Test.Tasty.Req.Verify
hs-source-dirs: src
test-suite tests
import: lang, deps
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Test.Tasty.Req.Parse.Test
build-depends:
tasty-req,
filepath >= 1.4.2,
tasty-golden >= 2.3.2