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 76 77 78 79 80 81 82 83 84 85
|
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: hspec-smallcheck
version: 0.5.3
license: MIT
license-file: LICENSE
copyright: (c) 2013-2018 Simon Hengel
maintainer: Simon Hengel <sol@typeful.net>
build-type: Simple
category: Testing
bug-reports: https://github.com/hspec/hspec-smallcheck/issues
homepage: http://hspec.github.io/
synopsis: SmallCheck support for the Hspec testing framework
description: SmallCheck support for the Hspec testing framework
source-repository head
type: git
location: https://github.com/hspec/hspec-smallcheck
library
ghc-options: -Wall
hs-source-dirs:
src
exposed-modules:
Test.Hspec.SmallCheck
other-modules:
Test.Hspec.SmallCheck.Compat
Test.Hspec.SmallCheck.Types
Paths_hspec_smallcheck
build-depends:
HUnit
, base >=4.5.0.0 && <5
, call-stack
, hspec-core >=2.10.0
, smallcheck >=1.1
default-language: Haskell2010
test-suite example
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_hspec_smallcheck
hs-source-dirs:
example
ghc-options: -Wall
build-depends:
HUnit
, base >=4.5.0.0 && <5
, call-stack
, hspec
, hspec-core >=2.10.0
, hspec-smallcheck
, smallcheck >=1.1
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
build-tool-depends:
hspec-discover:hspec-discover
hs-source-dirs:
src
test
main-is: Spec.hs
other-modules:
Test.Hspec.SmallCheck
Test.Hspec.SmallCheck.Compat
Test.Hspec.SmallCheck.Types
Test.Hspec.SmallCheck.TypesSpec
Test.Hspec.SmallCheckSpec
Paths_hspec_smallcheck
build-depends:
HUnit
, QuickCheck
, base >=4.5.0.0 && <5
, base-orphans
, call-stack
, hspec
, hspec-core >=2.10.0
, smallcheck >=1.1
default-language: Haskell2010
|