a8d190bb13
Test::Identity provides a single testing function, identical. It asserts that a given reference is as expected; that is, it either refers to the same object or is undef. It is similar to Test::More::is except that it uses refaddr, ensuring that it behaves correctly even if the references under test are objects that overload stringification or numification. It also provides better diagnostics if the test fails. WWW: http://search.cpan.org/dist/Test-Identity/ Feature safe: yes
21 lines
417 B
Makefile
21 lines
417 B
Makefile
# New ports collection makefile for: p5-Test-Identity
|
|
# Date created: 2011-11-28
|
|
# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Test-Identity
|
|
PORTVERSION= 0.01
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Assert the referential identity of a reference
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Test::Identity.3
|
|
|
|
.include <bsd.port.mk>
|