Skip to content

Commit

Permalink
Update from Hackage at 2018-07-24T23:08:44Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Jul 24, 2018
1 parent e28e0ad commit 2f19c94
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
88 changes: 88 additions & 0 deletions tasty/1.1.0.3/tasty.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
-- Initial tasty.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/

name: tasty
version: 1.1.0.3
synopsis: Modern and extensible testing framework
description: Tasty is a modern testing framework for Haskell.
It lets you combine your unit tests, golden
tests, QuickCheck/SmallCheck properties, and any
other types of tests into a single test suite.
license: MIT
license-file: LICENSE
author: Roman Cheplyaka <roma@ro-che.info>
maintainer: Roman Cheplyaka <roma@ro-che.info>
homepage: https://github.com/feuerbach/tasty
bug-reports: https://github.com/feuerbach/tasty/issues
-- copyright:
category: Testing
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10

Source-repository head
type: git
location: git://github.com/feuerbach/tasty.git
subdir: core

flag clock
description:
Depend on the clock package for more accurate time measurement
default: True

library
exposed-modules:
Test.Tasty,
Test.Tasty.Options,
Test.Tasty.Providers,
Test.Tasty.Runners
Test.Tasty.Ingredients,
Test.Tasty.Ingredients.Basic
Test.Tasty.Ingredients.ConsoleReporter

-- for testing only
Test.Tasty.Patterns.Types
Test.Tasty.Patterns.Parser
Test.Tasty.Patterns.Eval
other-modules:
Test.Tasty.Parallel,
Test.Tasty.Core,
Test.Tasty.Options.Core,
Test.Tasty.Options.Env,
Test.Tasty.Patterns,
Test.Tasty.Patterns.Expr,
Test.Tasty.Run,
Test.Tasty.Runners.Reducers,
Test.Tasty.Runners.Utils,
Test.Tasty.CmdLine,
Test.Tasty.Ingredients.ListTests
Test.Tasty.Ingredients.IncludingOptions
build-depends:
base >= 4.5 && < 5,
stm >= 2.3,
containers,
mtl >= 2.1.3.1,
tagged >= 0.5,
optparse-applicative >= 0.14,
unbounded-delays >= 0.1,
async >= 2.0,
ansi-terminal >= 0.6.2

if flag(clock)
build-depends: clock >= 0.4.4.0
else
build-depends: time >= 1.4

if impl(ghc < 7.6)
-- for GHC.Generics
build-depends: ghc-prim

if !os(windows)
build-depends: unix,
wcwidth
cpp-options: -DUNIX

-- hs-source-dirs:
default-language: Haskell2010
default-extensions: CPP
ghc-options: -Wall
1 change: 1 addition & 0 deletions tasty/1.1.0.3/tasty.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"66af50a485f0e5e97b0ad96b9993c702","Skein512_512":"a53102a17f67703b954092f75f502284403cfae1a257099029301e942023a5f87186f3e6698fe936bb65f393fb6fa42b642db965eeb8ea21f594d8c98e046aa2","SHA1":"94095e533e93f549fa68c1eec6903fe23c1f4711","SHA512":"18f8cbdfd968bdb3e4a8daa0d38a2f69288cc880ab433825deabd0d094f725d5a43e6495d17dae72693717b46f25ed330e9686d22c3d79abd96e3d494eaf41b2","SHA256":"426cf5f542100af2d49585e131819b9e03bceded6f06c5a8c958c2514e8b3193"},"package-locations":["https://hackage.haskell.org/package/tasty-1.1.0.3/tasty-1.1.0.3.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/tasty-1.1.0.3.tar.gz"],"package-size":44219}

0 comments on commit 2f19c94

Please sign in to comment.