packages feed

assert4hs-tasty-0.1.0: assert4hs-tasty.cabal

cabal-version:      1.12
name:               assert4hs-tasty
version:            0.1.0
license:            MIT
license-file:       LICENSE
copyright:          2021 Pawel Nosal
maintainer:         p.nosal1986@gmail.com
author:             Pawel Nosal
homepage:           https://github.com/paweln1986/assert4hs-tasty#readme
bug-reports:        https://github.com/paweln1986/assert4hs-tasty/issues
synopsis:           Provider for tasty runner to run assert4hs tests
description:
    Please see the README on GitHub at <https://github.com/paweln1986/assert4hs-tasty#readme>

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

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

library
    exposed-modules:  Test.Fluent.Tasty.TestCase
    hs-source-dirs:   src
    other-modules:    Paths_assert4hs_tasty
    default-language: Haskell2010
    ghc-options:
        -haddock -Wall -Wcompat -Wincomplete-record-updates
        -Wincomplete-uni-patterns -Wredundant-constraints
        -Wno-unused-do-bind -Werror=incomplete-patterns

    build-depends:
        assert4hs-core >=0.1.0,
        base >=4.7 && <5,
        tasty >=1.4.1

test-suite assert4hs-tasty-test
    type:             exitcode-stdio-1.0
    main-is:          Spec.hs
    hs-source-dirs:   test
    other-modules:    Paths_assert4hs_tasty
    default-language: Haskell2010
    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-core >=0.1.0,
        assert4hs-tasty -any,
        base >=4.7 && <5,
        tasty >=1.4.1