File Coverage

blib/lib/WebService/Aladdin/Item.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             package WebService::Aladdin::Item;
2              
3 2     2   12 use strict;
  2         4  
  2         66  
4 2     2   10 use warnings;
  2         3  
  2         77  
5 2     2   11 use base qw(Class::Accessor::Fast);
  2         4  
  2         16  
6              
7             __PACKAGE__->mk_accessors(qw/
8             publisher categoryId stockStatus author customerReviewRank description itemPage
9             priceSales creator content category categoryName link date priceStandard itemId isbn title cover pubDate guid mileage
10             /);
11              
12 0     0 0   sub init {}
13              
14             1;