File Coverage

lib/Class/MethodMaker/scalar.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::scalar;
2 4     4   14 use strict;
  4         7  
  4         141  
3 4     4   16 use warnings;
  4         3  
  4         118  
4              
5 4     4   15 use AutoLoader 5.57 qw( AUTOLOAD );
  4         58  
  4         29  
6             our @ISA = qw( AutoLoader );
7              
8 4     4   172 use Carp qw( carp croak cluck );
  4         6  
  4         235  
9              
10 4 50   4   14 use constant DEBUG => $ENV{_CMM_DEBUG} ? 1 : 0;
  4         3  
  4         187  
11              
12             __END__