-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasty-auto.cabal
75 lines (69 loc) · 1.86 KB
/
tasty-auto.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
-- This file has been generated from package.yaml by hpack version 0.15.0.
--
-- see: https://github.com/sol/hpack
name: tasty-auto
version: 0.2.0.0
synopsis: Auto discovery for Tasty with support for ingredients and test tree generation
description: Auto discovery for Tasty with support for ingredients and test tree generation
category: Testing
stability: experimental
homepage: https://github.com/minad/tasty-auto#readme
bug-reports: https://github.com/minad/tasty-auto/issues
author: Daniel Mendler <mail@daniel-mendler.de>
maintainer: Daniel Mendler <mail@daniel-mendler.de>
copyright: 2017 Daniel Mendler
license: MIT
license-file: LICENSE
tested-with: GHC == 7.10.3, GHC == 8.0.1
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/minad/tasty-auto
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5
, directory >= 1.1 && < 1.4
, filepath >= 1.3 && < 1.5
exposed-modules:
Test.Tasty.Auto
default-language: Haskell2010
executable tasty-auto
main-is: tasty-auto.hs
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5
, directory >= 1.1 && < 1.4
, filepath >= 1.3 && < 1.5
, tasty-auto
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5
, directory >= 1.1 && < 1.4
, filepath >= 1.3 && < 1.5
, base
, tasty
, tasty-auto
, tasty-hspec
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck
other-modules:
CaseTest
PropTest
SCPropTest
SubMod.PropTest
TestSpec
TreeTest
default-language: Haskell2010