File Coverage

lib/WebService/Shippo/CustomsItems.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   33 use strict;
  7         13  
  7         170  
2 7     7   35 use warnings;
  7         11  
  7         231  
3 7     7   30 use MRO::Compat 'c3';
  7         14  
  7         376  
4              
5             package WebService::Shippo::CustomsItems;
6             require WebService::Shippo::CustomsItem;
7 7         1096 use base qw(
8             WebService::Shippo::Collection
9             WebService::Shippo::Create
10             WebService::Shippo::Fetch
11 7     7   38 );
  7         11  
12              
13             sub item_class () { 'WebService::Shippo::CustomsItem' }
14              
15             sub collection_class () { __PACKAGE__ }
16              
17             BEGIN {
18 7     7   35 no warnings 'once';
  7         11  
  7         226  
19 7     7   183 *Shippo::CustomsItems:: = *WebService::Shippo::CustomsItems::;
20             }
21              
22             1;
23              
24             =pod
25              
26             =encoding utf8
27              
28             =head1 NAME
29              
30             WebService::Shippo::CustomsItem - Customs Item collection class
31              
32             =head1 VERSION
33              
34             version 0.0.20
35              
36             =head1 DESCRIPTION
37              
38             Customs items are distinct items in your international shipment parcel.
39              
40             =head1 API DOCUMENTATION
41              
42             For more information about Customs Items, consult the Shippo API
43             documentation:
44              
45             =over 2
46              
47             =item * L
48              
49             =back
50              
51             =head1 REPOSITORY
52              
53             =over 2
54              
55             =item * L
56              
57             =item * L
58              
59             =back
60              
61             =head1 AUTHOR
62              
63             Iain Campbell
64              
65             =head1 COPYRIGHT AND LICENSE
66              
67             This software is copyright (c) 2015 by Iain Campbell.
68              
69             You may distribute this software under the terms of either the GNU General
70             Public License or the Artistic License, as specified in the Perl README
71             file.
72              
73             =cut