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 32     32   282 use Perlmazing;
  32         71  
  32         187  
2              
3             sub main {
4 253     253   617 my ($type, $val) = @_;
5 253         770 ref($val) eq $type;
6             }
7