packages feed

tasty-kat-0.0.3: tasty-kat.cabal

Name:                tasty-kat
Version:             0.0.3
Synopsis:            Known Answer Tests (KAT) framework for tasty
Description:
    Tests running from simple KATs file (different formats/helper supported)
License:             MIT
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          vincent@snarc.org
Category:            tasty-kat
Stability:           experimental
Build-Type:          Simple
Homepage:            https://github.com/vincenthz/tasty-kat
Bug-Reports:         https://github.com/vincenthz/tasty-kat/issues
Cabal-Version:       >=1.10
extra-source-files:  README.md
                   , tests/KAT

source-repository head
  type: git
  location: https://github.com/vincenthz/tasty-kat

Library
  Exposed-modules:   Test.Tasty.KAT
                   , Test.Tasty.KAT.FileLoader
  Other-modules:     Test.Tasty.KAT.Internal
  Build-depends:     base >= 4 && < 5
                   , bytestring
                   , tasty
  ghc-options:       -Wall -fwarn-tabs
  default-language:  Haskell2010

Test-Suite test-tasty-kat
  type:              exitcode-stdio-1.0
  hs-source-dirs:    tests
  Main-is:           Tests.hs
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , mtl
                   , tasty
                   , tasty-quickcheck
                   , tasty-hunit
                   , tasty-kat
  ghc-options:       -Wall -fno-warn-orphans -fno-warn-missing-signatures
  default-language:  Haskell2010