packages feed

tasty-tmux-0.1.0.0: tasty-tmux.cabal

name:                tasty-tmux
version:             0.1.0.0
synopsis:            Terminal user acceptance testing (UAT) via tmux

description:
  Library for user acceptance testing (UAT) using tmux as the
  vehicle for running programs and interacting with them.
  .
  See "Test.Tasty.Tmux" for usage examples and API documentation.


license:             AGPL-3
license-file:        LICENSE
author:              Róman Joost and Fraser Tweedale
maintainer:          roman@bromeco.de
copyright:           Copyright 2017-2019  Róman Joost and Fraser Tweedale
category:            Testing
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md

homepage:            https://github.com/purebred-mua/tasty-tmux
bug-reports:         https://github.com/purebred-mua/tasty-tmux/issues
source-repository head
  type: git
  location: https://github.com/purebred-mua/tasty-tmux.git

library
  hs-source-dirs:      src
  ghc-options: -Wall -Wredundant-constraints
  exposed-modules:     Test.Tasty.Tmux
  -- other-modules:
  other-extensions:    FlexibleContexts, FlexibleInstances, RankNTypes
  build-depends:
    base >=4.11 && <5
    , mtl >=2.2 && <2.3
    , bytestring >=0.10 && <0.11
    , text >=1.2 && <1.3
    , typed-process >=0.2.4 && <0.3
    , regex-posix >= 0.95
    , tasty >= 1.2
    , tasty-hunit >= 0.10
  default-language:    Haskell2010