packages feed

string-conv-tests-0.1.1: string-conv-tests.cabal

name:                string-conv-tests
version:             0.1.1
synopsis:            Tests for the string-conv library
description:         These are in a separate project not only to keep
                     dependencies low when the string-conv library is included
                     in a project but also because these property tests use
                     `quickcheck-instances` which defines many orphan
                     instances. Never a good idea to force instances like this
                     on other projects.
license:             BSD3
license-file:        LICENSE
author:              Dino Morelli
maintainer:          dino@ui3.info
copyright:           Dino Morelli, 2022
category:            Data, String, Text
homepage:            https://github.com/dino-/string-conv-tests
bug-reports:         https://github.com/dino-/string-conv-tests/issues
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  changelog.md
  .gitignore
  README.md
  stack.yaml

source-repository head
  type:     git
  location: https://github.com/dino-/string-conv-tests.git

test-suite tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Main.hs
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base >= 4.4 && < 5
                     , bytestring
                     , quickcheck-instances
                     , string-conv
                     , tasty
                     , tasty-quickcheck
                     , text
  default-language:    Haskell2010