packages feed

hspec-expectations-lens-0.4.0: hspec-expectations-lens.cabal

name:                hspec-expectations-lens
version:             0.4.0
synopsis:            Hspec expectations for the lens stuff
description:
  Package adds hspec expectations (@\`shouldX\`@ things)
  that work nicely with the "lens" library
homepage:            http://supki.github.io/hspec-expectations-lens/
license:             BSD2
license-file:        LICENSE
author:              Matvey Aksenov
maintainer:          matvey.aksenov@gmail.com
category:            Testing
build-type:          Simple
extra-source-files:
  CHANGELOG.markdown
  README.markdown
  README.lhs
cabal-version:       >= 1.10

source-repository head
  type:     git
  location: https://github.com/supki/hspec-expectations-lens

source-repository this
  type:     git
  tag:      0.4.0
  location: https://github.com/supki/hspec-expectations-lens

library
  default-language:
    Haskell2010
  hs-source-dirs:
    src
  build-depends:
      base                    == 4.*
    , hspec-expectations      >= 0.5
    , hspec                   >= 1.12
    , lens                    >= 4.7
    , HUnit
  exposed-modules:
    Test.Hspec.Expectations.Lens
    Test.Hspec.Lens

test-suite spec
  type:
    exitcode-stdio-1.0
  default-language:
    Haskell2010
  hs-source-dirs:
    test
  main-is:
    Spec.hs
  other-modules:
    Test.Hspec.Expectations.LensSpec
  build-depends:
      base                    == 4.*
    , hspec
    , hspec-expectations-lens
    , lens
    , silently