File Coverage

blib/lib/PerlBean/Attribute/Multi.pm
Criterion Covered Total %
statement 94 94 100.0
branch 35 38 92.1
condition 3 6 50.0
subroutine 14 14 100.0
pod 3 7 42.8
total 149 159 93.7


line stmt bran cond sub pod time code
1             package PerlBean::Attribute::Multi;
2              
3 7     7   113 use 5.005;
  7         23  
  7         312  
4 7     7   36 use base qw( PerlBean::Attribute::Single );
  7         15  
  7         3727  
5 7     7   38 use strict;
  7         14  
  7         213  
6 7     7   35 use warnings;
  7         14  
  7         213  
7 7     7   39 use AutoLoader qw(AUTOLOAD);
  7         11  
  7         43  
8 7     7   228 use Error qw(:try);
  7         14  
  7         45  
9 7     7   1086 use PerlBean::Style qw(:codegen);
  7         14  
  7         1364  
10              
11             # Package version
12             our ($VERSION) = '$Revision: 1.0 $' =~ /\$Revision:\s+([^\s]+)/;
13              
14             1;
15              
16             __END__