Branch Coverage

blib/lib/Apache/Voodoo/Validate/signed_int.pm
Criterion Covered Total %
branch 0 16 0.0


line true false branch
13 0 0 if (defined $$c{'bytes'}) { }
0 0 elsif (defined $$c{'max'} and defined $$c{'min'}) { }
14 0 0 if ($$c{'bytes'} =~ /^\d+$/) { }
23 0 0 if ($$c{'max'} =~ /^\d+$/) { }
30 0 0 if ($$c{'min'} =~ /^(0+|-\d+)$/) { }
47 0 0 unless $v =~ /^(\+|-)?\d*$/
48 0 0 unless $v <= $$self{'max'}
49 0 0 unless $v >= $$self{'min'}