summaryrefslogtreecommitdiff
path: root/devel/p5-Carp-Assert-More/pkg-descr
blob: 3f34cfad488cc2e4588f17192e3b4bea1cee9b51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.

Author: Andy Lester
WWW: http://search.cpan.org/dist/Carp-Assert-More/