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 31     31   292 use Perlmazing;
  31         71  
  31         346  
2            
3             sub main {
4 253     253   612 my ($type, $val) = @_;
5 253         825 ref($val) eq $type;
6             }
7