packages feed

hspec-checkers-0.1.0: hspec-checkers.cabal

name:                hspec-checkers
version:             0.1.0
synopsis:            Allows to use checkers properties from hspec
description:
  Allows to use <http://hackage.haskell.org/package/checkers checkers>
  properties from <http://hackage.haskell.org/package/hspec hspec>.
license:             BSD3
license-file:        LICENSE
author:              Sönke Hahn
maintainer:          soenke.hahn@zalora.com
copyright:           Zalora South East Asia Pte Ltd
category:            Testing
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md
  default.nix

source-repository head
  type: git
  location: https://github.com/zalora/hspec-checkers

library
  exposed-modules:     Test.Hspec.Checkers
  build-depends:
    base == 4.*,
    hspec,
    checkers
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:
    -Wall -fno-warn-name-shadowing

test-suite spec
  type: exitcode-stdio-1.0
  default-language: Haskell2010
  hs-source-dirs: src, test
  main-is: Spec.hs
  build-depends:
    base == 4.*,
    hspec,
    checkers
  ghc-options:
    -Wall -fno-warn-name-shadowing