forked from hspec/hspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hspec.cabal
58 lines (54 loc) · 1.65 KB
/
hspec.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.2.
--
-- see: https://github.com/sol/hpack
name: hspec
version: 2.7.4
license: MIT
license-file: LICENSE
copyright: (c) 2011-2019 Simon Hengel,
(c) 2011-2012 Trystan Spangler,
(c) 2011 Greg Weber
maintainer: Simon Hengel <sol@typeful.net>
build-type: Simple
category: Testing
stability: experimental
bug-reports: https://github.com/hspec/hspec/issues
homepage: http://hspec.github.io/
synopsis: A Testing Framework for Haskell
description: Hspec is a testing framework for Haskell. Some of Hspec's distinctive
features are:
.
* a friendly DSL for defining tests
.
* integration with QuickCheck, SmallCheck, and HUnit
.
* parallel test execution
.
* automatic discovery of test files
.
The Hspec Manual is at <http://hspec.github.io/>.
extra-source-files:
CHANGES.markdown
source-repository head
type: git
location: https://github.com/hspec/hspec
library
ghc-options: -Wall
hs-source-dirs:
src
build-depends:
QuickCheck >=2.12
, base ==4.*
, hspec-core ==2.7.4
, hspec-discover ==2.7.4
, hspec-expectations ==0.8.2.*
exposed-modules:
Test.Hspec
Test.Hspec.Discover
Test.Hspec.Formatters
Test.Hspec.QuickCheck
Test.Hspec.Runner
other-modules:
Paths_hspec
default-language: Haskell2010