1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Update to 2.4.2

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 21:32:25 +00:00
parent d9b6a79cb4
commit ccfe210c86
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298171
3 changed files with 15 additions and 11 deletions

View File

@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= QuickCheck
PORTVERSION= 2.4.1.1
PORTVERSION= 2.4.2
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
@ -13,5 +13,7 @@ COMMENT= Library for random testing in haskell
LICENSE= BSD
USE_CABAL= random
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (cabal/QuickCheck-2.4.1.1.tar.gz) = 92a711d613bf0ce61b5843386923abf112bf509fa37931a893222a2324b0791b
SIZE (cabal/QuickCheck-2.4.1.1.tar.gz) = 25068
SHA256 (cabal/QuickCheck-2.4.2.tar.gz) = 6f05c399ae7b70c09ab21337caf1211f43fd76d6ad9b3814a4009ddbf438179f
SIZE (cabal/QuickCheck-2.4.2.tar.gz) = 25373

View File

@ -1,10 +1,12 @@
QuickCheck is a library for random testing of program properties. The programmer
provides a specification of the program, in the form of properties which
functions should satisfy, and QuickCheck then tests that the properties hold in
a large number of randomly generated cases.
QuickCheck is a library for random testing of program properties.
Specifications are expressed in Haskell, using combinators defined in the
QuickCheck library. QuickCheck provides combinators to define properties,
observe the distribution of test data, and define test data generators.
The programmer provides a specification of the program, in the form of
properties which functions should satisfy, and QuickCheck then tests
that the properties hold in a large number of randomly generated cases.
WWWW: http://www.cs.chalmers.se/~koen
Specifications are expressed in Haskell, using combinators defined in
the QuickCheck library. QuickCheck provides combinators to define
properties, observe the distribution of test data, and define test data
generators.
WWW: http://code.haskell.org/QuickCheck