File Coverage

blib/lib/API/Shippo/CarrierAccount.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1 1     1   6 use strict;
  1         2  
  1         22  
2 1     1   5 use warnings;
  1         2  
  1         22  
3 1     1   5 use MRO::Compat 'c3';
  1         1  
  1         34  
4              
5             package # Hide from PAUSE
6             API::Shippo::CarrierAccount;
7 1         602 use base ( 'API::Shippo::CreatableResource',
8             'API::Shippo::FetchableResource',
9             'API::Shippo::ListableResource',
10             'API::Shippo::UpdatableResource'
11 1     1   4 );
  1         1  
12              
13 1     1 0 2 sub api_resource {'carrier_accounts'} # why not "carrier/accounts", which
14             # would be consistent with Customs
15             # Declaration resource?
16              
17             1;