packages feed

assert4hs-hspec-0.1.0: assert4hs-hspec.cabal

cabal-version:      1.22
name:               assert4hs-hspec
version:            0.1.0
license:            MIT
license-file:       LICENSE.md
copyright:          2021 Pawel Nosal
maintainer:         p.nosal1986@gmail.com
author:             Pawel Nosal
homepage:           https://github.com/paweln1986/assert4hs-hspec#readme
bug-reports:        https://github.com/paweln1986/assert4hs-hspec/issues
synopsis:           integration point of assert4hs and hspec
description:
    Please see the README on GitHub at <https://github.com/githubuser/assert4hs-hspec#readme>

category:           Testing
build-type:         Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
    type:     git
    location: https://github.com/paweln1986/assert4hs-hspec

library
    exposed-modules:    Test.Fluent.Hspec
    reexported-modules:
        Test.Fluent.Assertions,
        Test.Fluent.Assertions.Maybe,
        Test.Fluent.Assertions.List,
        Test.Fluent.Assertions.Exceptions,
        Test.Fluent.Assertions.Either,
        Test.Fluent.Diff

    hs-source-dirs:     src
    other-modules:      Paths_assert4hs_hspec
    default-language:   Haskell2010
    build-depends:
        HUnit >=1.6.1.0,
        assert4hs-core >=0.1.0,
        base >=4.7 && <5,
        hspec >=2.7.8

test-suite assert4hs-hspec-test
    type:             exitcode-stdio-1.0
    main-is:          Spec.hs
    hs-source-dirs:   test
    other-modules:    Paths_assert4hs_hspec
    default-language: Haskell2010
    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        HUnit >=1.6.1.0,
        assert4hs-core >=0.1.0,
        assert4hs-hspec -any,
        base >=4.7 && <5,
        hspec >=2.7.8