packages feed

TLT-0.4.0.0: TLT.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack

name:           TLT
version:        0.4.0.0
synopsis:       Testing in monads and transformers without explicit specs
description:    A quick-and-dirty unit test system without test specifications, motivated by easy examination of intermediate results of computations in monad transformers.  See the GitHub repository <https://github.com/jphmrst/TLT/> for documentation, or the Haddock page for additional examples.
category:       Test
homepage:       https://github.com/jphmrst/TLT#readme
bug-reports:    https://github.com/jphmrst/TLT/issues
author:         John Maraist
maintainer:     haskell-tlt@maraist.org
copyright:      2022 John Maraist
license:        LGPL-3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/jphmrst/TLT

library
  exposed-modules:
      Test.TLT
      Test.TLT.Assertion
      Test.TLT.Buffer
      Test.TLT.Class
      Test.TLT.Options
      Test.TLT.Report
      Test.TLT.Results
      Test.TLT.Standard
  other-modules:
      Paths_TLT
  hs-source-dirs:
      src
  build-depends:
      STMonadTrans >=0.4.6 && <0.5
    , ansi-terminal >=0.11.1 && <0.12
    , base (>=4.14.1 && <4.15) || (>=4.15.1 && <4.16) || (>=4.16.0 && <4.17)
    , free >=5.1.7 && <5.2
    , mtl >=2.2.2 && <2.3
    , resourcet >=1.2.4 && <1.3
    , transformers >=0.5.6 && <0.6
  default-language: Haskell2010

executable TLT-exe
  main-is: Failing.hs
  other-modules:
      Paths_TLT
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      STMonadTrans >=0.4.6 && <0.5
    , TLT
    , ansi-terminal >=0.11.1 && <0.12
    , base (>=4.14.1 && <4.15) || (>=4.15.1 && <4.16) || (>=4.16.0 && <4.17)
    , free >=5.1.7 && <5.2
    , mtl >=2.2.2 && <2.3
    , resourcet >=1.2.4 && <1.3
    , transformers >=0.5.6 && <0.6
  default-language: Haskell2010

test-suite TLT-test-fail
  type: exitcode-stdio-1.0
  main-is: Passing.hs
  other-modules:
      Paths_TLT
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      STMonadTrans >=0.4.6 && <0.5
    , TLT
    , ansi-terminal >=0.11.1 && <0.12
    , base (>=4.14.1 && <4.15) || (>=4.15.1 && <4.16) || (>=4.16.0 && <4.17)
    , free >=5.1.7 && <5.2
    , mtl >=2.2.2 && <2.3
    , resourcet >=1.2.4 && <1.3
    , transformers >=0.5.6 && <0.6
  default-language: Haskell2010