File Coverage

lib/Perlmazing/Perlmazing/Precompile/_is_ref.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1 34     34   498 use Perlmazing;
  34         400  
  34         462  
2              
3             sub main {
4 253     253   768 my ($type, $val) = @_;
5 253         995 ref($val) eq $type;
6             }
7