packages feed

test-fun-0.1.0.0: test-fun.cabal

name:                test-fun
version:             0.1.0.0
synopsis: Testable functions
description:
  Generate, shrink, and show functions for testing higher-order properties.
  See README.
homepage:            https://github.com/Lysxia/test-fun#readme
license:             MIT
license-file:        LICENSE
author:              Li-yao Xia
maintainer:          lysxia@gmail.com
copyright:           2020 Li-yao Xia
category:            Testing
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
tested-with:         GHC == 8.0.2 || == 8.2.2 || == 8.4.4 || == 8.6.5 || == 8.8.2

library
  hs-source-dirs:      src
  exposed-modules:
    Test.Fun
    Test.Fun.Internal.CoGen
    Test.Fun.Internal.Generic
    Test.Fun.Internal.Orphan
    Test.Fun.Internal.Pretty
    Test.Fun.Internal.Shrink
    Test.Fun.Internal.Types
  build-depends:
    base >= 4.9 && < 5
  ghc-options: -Wall
  default-language:    Haskell2010

test-suite simple-test
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: test.hs
  build-depends:
    test-fun,
    tasty,
    tasty-hunit,
    base
  ghc-options: -Wall
  default-language: Haskell2010

source-repository head
  type:     git
  location: https://github.com/Lysxia/test-fun