packages feed

lame-tester-1.4.0: lame-tester.cabal

Name:                lame-tester
Version:             1.4.0
Cabal-version:       >=1.22.0
License:             BSD3
License-File:        LICENSE.txt
Author:              Jason Bertsche
Maintainer:          jason.bertsche@gmail.com
Homepage:            http://github.com/TheBizzle
Category:            Demo
Synopsis:            A strange and unnecessary selective test-running library
Description:         A strange and unnecessary selective test-running library
Build-type:          Simple

source-repository head
  type:     git
  location: git@github.com:TheBizzle/Tester-Haskell.git

library
  hs-source-dirs:   src
  exposed-modules:  Tester.Dialect, Tester.RunSettings, Tester.Suite
  default-extensions: OverloadedStrings
  default-language: Haskell2010
  build-depends:
    base-noprelude >= 4.8    && < 5,
    bizzlelude     >= 1.2.0  && < 1.3.0,
    containers     >= 0.5.11 && < 0.6.0,
    semigroups     >= 0.18.4 && < 0.19.0,
    validation     >= 1      && < 1.1.0
  GHC-Options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wmissing-import-lists
    -Wredundant-constraints
    -fno-warn-name-shadowing
    -funbox-strict-fields

test-suite tests
  type:             exitcode-stdio-1.0
  main-is:          Main.hs
  hs-source-dirs:   test
  default-extensions: OverloadedStrings
  default-language: Haskell2010
  other-modules: UnitTests
  build-depends:
    bizzlelude,
    containers,
    lame-tester,
    tasty       >= 1.0.1  && < 1.1.0,
    tasty-hunit >= 0.10.0 && < 0.11.0