File Coverage

lib/Class/MethodMaker/hash.pm
Criterion Covered Total %
statement 15 15 100.0
branch 1 2 50.0
condition n/a
subroutine 5 5 100.0
pod n/a
total 21 22 95.4


line stmt bran cond sub pod time code
1             package Class::MethodMaker::hash;
2 1     1   6 use strict;
  1         1  
  1         33  
3 1     1   4 use warnings;
  1         1  
  1         33  
4              
5 1     1   3 use AutoLoader 5.57 qw( AUTOLOAD );
  1         27  
  1         7  
6             our @ISA = qw( AutoLoader );
7              
8 1     1   53 use Carp qw( carp croak cluck );
  1         1  
  1         77  
9              
10 1 50   1   4 use constant DEBUG => $ENV{_CMM_DEBUG} ? 1 : 0;
  1         1  
  1         65  
11              
12             __END__