1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
#!perl
use warnings;
use strict;
use Test::More tests => 11;
use Carp::Assert::More;
use Test::Exception;
use constant PASS => 1;
use constant FAIL => 2;
my @cases = (
[ undef, FAIL ],
[ '', FAIL ],
[ [], FAIL ],
[ {}, FAIL ],
[ 5, PASS ],
[ 0, FAIL ],
[ 0.4, FAIL ],
[ -10, FAIL ],
[ 'dog', FAIL ],
[ '14.', FAIL ],
[ '14', PASS ],
);
for my $case ( @cases ) {
my ($val,$status) = @{$case};
my $desc = 'Checking ' . ($val // 'undef');
if ( $status eq FAIL ) {
throws_ok( sub { assert_positive_integer( $val ) }, qr/Assertion failed/, $desc );
}
else {
lives_ok( sub { assert_positive_integer( $val ) }, $desc );
}
}
exit 0;
|