-
Notifications
You must be signed in to change notification settings - Fork 0
/
coverage.cabal
50 lines (46 loc) · 1.39 KB
/
coverage.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
name: coverage
version: 0.1.0.4
synopsis: Exhaustivity Checking Library
homepage: https://github.com/nicodelpiano/coverage
bug-reports: https://github.com/nicodelpiano/coverage/issues
description: A library for exhaustivity and redundancy checking.
license: MIT
license-file: LICENSE
author: Nicolas Del Piano <ndel314@gmail.com>
maintainer: Nicolas Del Piano <ndel314@gmail.com>
copyright: (c) 2015 Nicolas Del Piano
category: Control
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
extra-source-files:
examples/*.hs
tests/*.hs
source-repository head
type: git
location: https://github.com/nicodelpiano/coverage.git
library
ghc-options: -Wall
exposed-modules: Control.Coverage
Control.Coverage.Internal
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type:
exitcode-stdio-1.0
ghc-options:
-Wall
hs-source-dirs:
tests, .
main-is:
Spec.hs
other-modules:
CoverageSpec
CoverageSupport
CoverageUnitSpec
build-depends:
base >=4.7 && <4.8, coverage, QuickCheck >=2.7, hspec == 2.*, HUnit >= 1.3
default-language: Haskell2010