-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasty-hunit-compat.cabal
40 lines (38 loc) · 1.15 KB
/
tasty-hunit-compat.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cabal-version: 2.0
name: tasty-hunit-compat
version: 0.2
synopsis: Integration of `HUnit` with `tasty`.
description: Implements the proper integration between existing `HUnit` package and `tasty` framework.
The existing solution in `tasty` defines its own primitives that are not compatible with `HUnit`.
category: Testing
homepage: https://github.com/serokell/tasty-hunit-compat#readme
bug-reports: https://github.com/serokell/tasty-hunit-compat/issues
author: Serokell
maintainer: Serokell <hi@serokell.io>
copyright: 2020 Tocqueville Group
license: MPL-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/serokell/tasty-hunit-compat
library
exposed-modules:
Test.Tasty.HUnit
other-modules:
Paths_tasty_hunit_compat
hs-source-dirs:
src
ghc-options:
-Wall
-Wincomplete-record-updates
-Wincomplete-uni-patterns
build-depends:
base >=4.7 && <5
, HUnit <1.7
, tasty <1.5
, tasty-hunit <0.11
default-language: Haskell2010