2015-10-08 14:05:59 +03:00
|
|
|
-- Initial hunit-dejafu.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: hunit-dejafu
|
2016-06-22 13:20:22 +03:00
|
|
|
version: 0.3.0.2
|
2015-10-08 14:05:59 +03:00
|
|
|
synopsis: Deja Fu support for the HUnit test framework.
|
2015-11-01 17:45:59 +03:00
|
|
|
|
|
|
|
description:
|
|
|
|
Integration between the <https://hackage.haskell.org/package/dejafu dejafu>
|
|
|
|
library for concurrency testing and
|
|
|
|
<https://hackage.haskell.org/package/HUnit HUnit>. This lets you
|
|
|
|
easily incorporate concurrency testing into your existing test
|
|
|
|
suites.
|
|
|
|
.
|
|
|
|
See the <https://github.com/barrucadu/dejafu README> for more
|
|
|
|
details.
|
|
|
|
|
2015-10-08 14:05:59 +03:00
|
|
|
homepage: https://github.com/barrucadu/dejafu
|
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Michael Walker
|
|
|
|
maintainer: mike@barrucadu.co.uk
|
|
|
|
-- copyright:
|
|
|
|
category: Testing
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
2015-10-25 16:40:23 +03:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/barrucadu/dejafu.git
|
|
|
|
|
2016-04-03 16:26:31 +03:00
|
|
|
source-repository this
|
|
|
|
type: git
|
|
|
|
location: https://github.com/barrucadu/dejafu.git
|
2016-05-26 16:02:07 +03:00
|
|
|
tag: hunit-dejafu-0.3.0.1
|
2016-04-03 16:26:31 +03:00
|
|
|
|
2015-10-08 14:05:59 +03:00
|
|
|
library
|
|
|
|
exposed-modules: Test.HUnit.DejaFu
|
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2016-05-26 14:41:10 +03:00
|
|
|
build-depends: base >=4.8 && <5
|
|
|
|
, exceptions >=0.7 && <0.9
|
2016-05-12 16:34:32 +03:00
|
|
|
, dejafu >=0.2 && <0.5
|
2016-05-26 14:41:10 +03:00
|
|
|
, HUnit >=1.2 && <1.4
|
2015-10-08 14:05:59 +03:00
|
|
|
-- hs-source-dirs:
|
2016-06-22 13:20:22 +03:00
|
|
|
default-language: Haskell2010
|