-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest-fixture.cabal
78 lines (74 loc) · 1.45 KB
/
test-fixture.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
75
76
77
78
name:
test-fixture
version:
0.5.1.0
synopsis:
Test monadic side-effects
description:
Please see README.md
homepage:
http://github.com/cjdev/test-fixture#readme
license:
BSD3
license-file:
LICENSE
author:
Joe Vargas
maintainer:
copyright:
2016 CJ Affiliate by Conversant
category:
Test
build-type:
Simple
extra-source-files:
CHANGELOG.md
LICENSE
README.md
cabal-version:
>=1.10
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
exposed-modules:
Control.Monad.TestFixture
Control.Monad.TestFixture.TH
Control.Monad.TestFixture.TH.Internal
Control.Monad.TestFixture.TH.Internal.TypesQuasi
build-depends:
base >= 4.7 && < 5
, data-default-class
, exceptions
, haskell-src-exts
, haskell-src-meta
, mtl
, template-haskell >= 2.10 && < 2.13
, th-orphans
if impl(ghc < 8)
build-depends:
transformers
source-repository head
type:
git
location:
https://github.com/cjdev/test-fixture
test-suite test-fixture-test-suite
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall
other-modules:
Test.Control.Monad.TestFixtureSpec
Test.Control.Monad.TestFixture.DefaultSignaturesSpec
Test.Control.Monad.TestFixture.THSpec
build-depends:
base
, test-fixture
, hspec
, hspec-discover
, mtl
, template-haskell
, transformers