packages feed

assert4hs-0.0.0.1: assert4hs.cabal

cabal-version:      1.12
name:               assert4hs
version:            0.0.0.1
license:            MIT
license-file:       LICENSE
copyright:          2021 Pawel Nosal
maintainer:         p.nosal1986@gmail.com
author:             Pawel Nosal
homepage:           https://github.com/paweln1986/assert4hs#readme
bug-reports:        https://github.com/paweln1986/assert4hs/issues
synopsis:           A set of assertion for writing more readable tests cases
description:
    Please see the README on GitHub at <https://github.com/paweln1986/assert4hs#readme>

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

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

library
    exposed-modules:
        Test.Fluent.Assertions
        Test.Fluent.Assertions.Either
        Test.Fluent.Assertions.Exceptions
        Test.Fluent.Assertions.Maybe
        Test.Fluent.Diff
        Test.Fluent.Internal.Assertions

    hs-source-dirs:     src
    other-modules:      Paths_assert4hs
    default-language:   Haskell2010
    default-extensions: OverloadedStrings BangPatterns
    ghc-options:
        -haddock -Wall -Wcompat -Wincomplete-record-updates
        -Wincomplete-uni-patterns -Wredundant-constraints
        -Wno-unused-do-bind -Werror=incomplete-patterns

    build-depends:
        base >=4.7 && <5,
        data-default >=0.7.1.1,
        pretty-diff >=0.4.0.0,
        text >=1.2.4.1

test-suite assert4hs-test
    type:               exitcode-stdio-1.0
    main-is:            Spec.hs
    hs-source-dirs:     test
    other-modules:
        TestCase
        Paths_assert4hs

    default-language:   Haskell2010
    default-extensions: OverloadedStrings BangPatterns
    ghc-options:
        -haddock -Wall -Wcompat -Wincomplete-record-updates
        -Wincomplete-uni-patterns -Wredundant-constraints
        -Wno-unused-do-bind -Werror=incomplete-patterns -threaded -rtsopts
        -with-rtsopts=-N

    build-depends:
        assert4hs -any,
        base >=4.7 && <5,
        data-default >=0.7.1.1,
        pretty-diff >=0.4.0.0,
        tasty >=1.4.1,
        text >=1.2.4.1