1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/devel/p5-Carp-Assert-More/pkg-descr
Sunpoet Po-Chuan Hsieh 1b0d3f744b - Add WWW
- Use single space after WWW:
- Remove Author line
2013-08-29 17:16:52 +00:00

20 lines
550 B
Plaintext

Carp::Assert::More is a set of wrappers around the Carp::Assert functions
to make the habit of writing assertions even easier.
Everything in here is effectively syntactic sugar. There's no technical
reason to use
assert_isa( $foo, 'HTML::Lint' );
instead of
assert( defined $foo );
assert( ref($foo) eq 'HTML::Lint' );
other than readability and simplicity of the code.
My intent here is to make common assertions easy so that we as programmers
have no excuse to not use them.
WWW: http://search.cpan.org/dist/Carp-Assert-More/