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   15 use strict;
  4         5  
  4         118  
3 4     4   13 use warnings;
  4         4  
  4         113  
4              
5 4     4   11 use AutoLoader 5.57 qw( AUTOLOAD );
  4         67  
  4         25  
6             our @ISA = qw( AutoLoader );
7              
8 4     4   161 use Carp qw( carp croak cluck );
  4         4  
  4         267  
9              
10 4 50   4   16 use constant DEBUG => $ENV{_CMM_DEBUG} ? 1 : 0;
  4         5  
  4         193  
11              
12             __END__