File Coverage

lib/WebService/Shippo/Item.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1 7     7   41 use strict;
  7         14  
  7         168  
2 7     7   33 use warnings;
  7         13  
  7         174  
3 7     7   31 use MRO::Compat 'c3';
  7         14  
  7         238  
4              
5             package WebService::Shippo::Item;
6 7     7   35 use base ( 'WebService::Shippo::Resource' );
  7         9  
  7         481  
7              
8             BEGIN {
9 7     7   38 no warnings 'once';
  7         16  
  7         230  
10 7     7   130 *Shippo::Item:: = *WebService::Shippo::Item::;
11             }
12              
13             1;