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   28 use strict;
  4         6  
  4         194  
3 4     4   24 use warnings;
  4         9  
  4         334  
4              
5 4     4   24 use AutoLoader 5.57 qw( AUTOLOAD );
  4         105  
  4         34  
6             our @ISA = qw( AutoLoader );
7              
8 4     4   277 use Carp qw( carp croak cluck );
  4         11  
  4         387  
9              
10 4 50   4   25 use constant DEBUG => $ENV{_CMM_DEBUG} ? 1 : 0;
  4         8  
  4         355  
11              
12             __END__