-
Notifications
You must be signed in to change notification settings - Fork 0
/
props.cabal
31 lines (28 loc) · 1008 Bytes
/
props.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
name: props
version: 0.1.2
synopsis: Reusable quickcheck properties
description: Properties of functions and relations, perhaps for use with quickcheck
license: BSD3
license-file: LICENSE
author: Alec Heller
maintainer: alec@deviant-logic.net
category: Test
build-type: Simple
cabal-version: >=1.10
homepage: http://github.com/deviant-logic/props
bug-reports: http://github.com/deviant-logic/props/issues
source-repository head
type: git
location: git://github.com/deviant-logic/props.git
library
build-depends: base >=4.6 && <5
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Test.Properties
test-suite doctests
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: doctests.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends: base, doctest >= 0.8, QuickCheck