-
Notifications
You must be signed in to change notification settings - Fork 1
/
polysemy-mocks.cabal
53 lines (49 loc) · 1.41 KB
/
polysemy-mocks.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
cabal-version: 1.12
name: polysemy-mocks
version: 0.3.1.0
description: Please see the README on GitHub at <https://github.com/akshaymankar/polysemy-mocks#readme>
homepage: https://github.com/akshaymankar/polysemy-mocks#readme
bug-reports: https://github.com/akshaymankar/polysemy-mocks/issues
author: Akshay Mankar
maintainer: [email protected]
copyright: 2020 Akshay Mankar
license: BSD3
license-file: LICENSE
build-type: Simple
category: Testing
synopsis: Mocking framework for polysemy effects
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/akshaymankar/polysemy-mocks
library
hs-source-dirs:
src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, polysemy >= 1.7
, template-haskell
exposed-modules:
Test.Polysemy.Mock
Test.Polysemy.Mock.TH
test-suite tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, hspec
, polysemy >= 1.7
, polysemy-mocks
default-language: Haskell2010
other-modules:
Test.Polysemy.Mock.TeletypeTHSpec
Test.Polysemy.Mock.TeletypeSpec
Test.Polysemy.Mock.TeletypeIdentitySpec
build-tool-depends: hspec-discover:hspec-discover