File Coverage

blib/lib/PerlBean/Described.pm
Criterion Covered Total %
statement 31 31 100.0
branch 4 8 50.0
condition 1 3 33.3
subroutine 10 10 100.0
pod 3 3 100.0
total 49 55 89.0


line stmt bran cond sub pod time code
1             package PerlBean::Described;
2              
3 1     1   15 use 5.005;
  1         4  
  1         35  
4 1     1   6 use strict;
  1         2  
  1         36  
5 1     1   4 use warnings;
  1         2  
  1         22  
6 1     1   4 use AutoLoader qw(AUTOLOAD);
  1         2  
  1         5  
7 1     1   35 use Error qw(:try);
  1         2  
  1         6  
8              
9             # Package version
10             our ($VERSION) = '$Revision: 1.0 $' =~ /\$Revision:\s+([^\s]+)/;
11              
12             1;
13              
14             __END__