File Coverage

blib/lib/API/Shippo/UpdatableResource.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1 1     1   6 use strict;
  1         2  
  1         24  
2 1     1   5 use warnings;
  1         1  
  1         24  
3 1     1   5 use MRO::Compat 'c3';
  1         2  
  1         35  
4              
5             package # Hide from PAUSE
6             API::Shippo::UpdatableResource;
7 1     1   5 use base ( 'API::Shippo::Resource' );
  1         2  
  1         101  
8              
9             sub update
10       0 0   {
11             ;
12             }
13              
14             1;