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   19 use strict;
  4         5  
  4         233  
3 4     4   22 use warnings;
  4         4  
  4         155  
4              
5 4     4   21 use AutoLoader 5.57 qw( AUTOLOAD );
  4         69  
  4         29  
6             our @ISA = qw( AutoLoader );
7              
8 4     4   190 use Carp qw( carp croak cluck );
  4         5  
  4         254  
9              
10 4 50   4   14 use constant DEBUG => $ENV{_CMM_DEBUG} ? 1 : 0;
  4         5  
  4         205  
11              
12             __END__