packages feed

test-framework-leancheck-0.0.4: test-framework-leancheck.cabal

-- Cabal file for test-framework-leancheck
name:                test-framework-leancheck
version:             0.0.4
synopsis:            LeanCheck support for test-framework.
description:
  LeanCheck support for test-framework.
  .
  This package can be used to incorporate LeanCheck tests
  into test-framework test suites.
  .
  Please see the Haddock documentation and README for more details.

homepage:            https://github.com/rudymatela/test-framework-leancheck#readme
license:             BSD3
license-file:        LICENSE
author:              Rudy Matela <rudy@matela.com.br>
maintainer:          Rudy Matela <rudy@matela.com.br>
category:            Testing
build-type:          Simple
cabal-version:       1.18

extra-doc-files: README.md
               , TODO.md
extra-source-files: .gitignore
                  , eg/minimal.hs
                  , Makefile
                  , mk/depend.mk
                  , mk/haskell.mk
                  , mk/ghcdeps
                  , mk/haddock-i
                  , mk/All.hs
                  , mk/Toplibs.hs
                  , mk/install-on
                  , stack.yaml
                  , test/sdist
                  , .github/workflows/build.yml
tested-with: GHC==9.0
           , GHC==8.10
           , GHC==8.8
           , GHC==8.6
           , GHC==8.4
           , GHC==8.2
           , GHC==8.0
           , GHC==7.10


source-repository head
  type:           git
  location:       https://github.com/rudymatela/test-framework-leancheck

source-repository this
  type:           git
  location:       https://github.com/rudymatela/test-framework-leancheck
  tag:            v0.0.4

library
  exposed-modules:     Test.Framework.Providers.LeanCheck
  hs-source-dirs:      src
  build-depends:       base >= 4 && < 5, test-framework, leancheck
  default-language:    Haskell2010

test-suite test
  type:                exitcode-stdio-1.0
  main-is:             test.hs
  hs-source-dirs:      test
  build-depends:       base >= 4 && < 5, test-framework, leancheck, test-framework-leancheck
  default-language:    Haskell2010