File Coverage

blib/lib/WebService/Aladdin/Items.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod n/a
total 16 18 88.8


line stmt bran cond sub pod time code
1             package WebService::Aladdin::Items;
2              
3 2     2   12 use strict;
  2         16  
  2         84  
4 2     2   12 use warnings;
  2         5  
  2         83  
5 2     2   13 use base qw(Class::Accessor::Fast);
  2         4  
  2         20  
6 2     2   15729 use overload '@{}' => sub { shift->items };
  2     0   6  
  2         31  
  0            
7              
8             __PACKAGE__->mk_accessors(qw/items status link startIndex itemsPerPage totalResults/);
9              
10             1;