7e9ca1627d
Test::Assertions provides a convenient set of tools for constructing tests, such as unit tests or run-time assertion checks (like C's ASSERT macro). Unlike some of the Test:: modules available on CPAN, Test::Assertions is not limited to unit test scripts; for example it can be used to check output is as expected within a benchmarking script. When it is used for unit tests, it generates output in the standard form for CPAN unit testing (under Test::Harness).
22 lines
451 B
Makefile
22 lines
451 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/09/09 21:14:20 simon Exp $
|
|
|
|
COMMENT = set of building blocks for both unit and runtime testing
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Test-Assertions-1.054
|
|
CATEGORIES = devel
|
|
|
|
MAINTAINER = Simon Bertrang <simon@openbsd.org>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
RUN_DEPENDS = ::devel/p5-Log-Trace
|
|
|
|
MAKE_ENV += TEST_POD=1
|
|
|
|
.include <bsd.port.mk>
|