File Coverage

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