File Coverage

blib/lib/PerlBean/Method/Constructor.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package PerlBean::Method::Constructor;
2              
3 5     5   122 use 5.005;
  5         17  
  5         226  
4 5     5   30 use base qw( PerlBean::Method );
  5         9  
  5         446  
5 5     5   27 use strict;
  5         15  
  5         188  
6 5     5   26 use warnings;
  5         9  
  5         187  
7 5     5   25 use AutoLoader qw(AUTOLOAD);
  5         13  
  5         34  
8 5     5   159 use Error qw(:try);
  5         10  
  5         36  
9              
10             # Package version
11             our ($VERSION) = '$Revision: 1.0 $' =~ /\$Revision:\s+([^\s]+)/;
12              
13             1;
14              
15             __END__