[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: gnu: Add ghc-test-framework.
From: |
Eric Bavier |
Subject: |
03/10: gnu: Add ghc-test-framework. |
Date: |
Thu, 19 Nov 2015 14:08:36 +0000 |
bavier pushed a commit to branch master
in repository guix.
commit 09655c676be6ae7114ad8016e745dac315e769fe
Author: Eric Bavier <address@hidden>
Date: Wed Nov 18 18:05:24 2015 -0600
gnu: Add ghc-test-framework.
* gnu/packages/haskell.scm (ghc-test-framework): New variable.
---
gnu/packages/haskell.scm | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 2e071ab..f3086b1 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1720,6 +1720,41 @@ library, including the ability to split random number
generators.")
"This package provides various primitive memory-related operations.")
(license bsd-3)))
+(define-public ghc-test-framework
+ (package
+ (name "ghc-test-framework")
+ (version "0.8.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://hackage.haskell.org/package/test-framework/"
+ "test-framework-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0wxjgdvb1c4ykazw774zlx86550848wbsvgjgcrdzcgbb9m650vq"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-hunit" ,ghc-hunit)
+ ("ghc-libxml" ,ghc-libxml)
+ ("ghc-quickcheck" ,ghc-quickcheck)))
+ (propagated-inputs
+ `(("ghc-ansi-terminal" ,ghc-ansi-terminal)
+ ("ghc-ansi-wl-pprint" ,ghc-ansi-wl-pprint)
+ ("ghc-hostname" ,ghc-hostname)
+ ("ghc-old-locale" ,ghc-old-locale)
+ ("ghc-random" ,ghc-random)
+ ("ghc-regex-posix" ,ghc-regex-posix)
+ ("ghc-xml" ,ghc-xml)))
+ (home-page "https://batterseapower.github.io/test-framework/")
+ (synopsis "Framework for running and organising tests")
+ (description
+ "This package allows tests such as QuickCheck properties and HUnit test
+cases to be assembled into test groups, run in parallel (but reported in
+deterministic order, to aid diff interpretation) and filtered and controlled
+by command line options. All of this comes with colored test output, progress
+reporting and test statistics output.")
+ (license bsd-3)))
+
(define-public ghc-tf-random
(package
(name "ghc-tf-random")
- branch master updated (d2a5210 -> c3c61a7), Eric Bavier, 2015/11/19
- 02/10: gnu: Add ghc-libxml., Eric Bavier, 2015/11/19
- 01/10: gnu: Add ghc-hostname., Eric Bavier, 2015/11/19
- 03/10: gnu: Add ghc-test-framework.,
Eric Bavier <=
- 05/10: gnu: ghc-regex-posix: Propagate inputs., Eric Bavier, 2015/11/19
- 06/10: gnu: ghc-async: Enable tests., Eric Bavier, 2015/11/19
- 08/10: gnu: ghc-attoparsec: Enable tests., Eric Bavier, 2015/11/19
- 07/10: gnu: Add ghc-test-framework-quickcheck2., Eric Bavier, 2015/11/19
- 04/10: gnu: Add ghc-test-framework-hunit., Eric Bavier, 2015/11/19
- 09/10: gnu: Add ghc-chasingbottoms., Eric Bavier, 2015/11/19
- 10/10: gnu: ghc-unordered-containers: Enable tests., Eric Bavier, 2015/11/19