File Coverage

blib/lib/App/PAIA/Command/items.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package App::PAIA::Command::items;
2 4     4   1678 use strict;
  4         7  
  4         99  
3 4     4   30 use v5.10;
  4         8  
  4         136  
4 4     4   14 use parent 'App::PAIA::Command';
  4         4  
  4         14  
5              
6 4     4   177 use App::PAIA::JSON;
  4         4  
  4         289  
7              
8             sub _execute {
9 1     1   1 my ($self, $opt, $args) = @_;
10              
11 1         6 $self->core_request('GET', 'items');
12             }
13              
14             1;
15             __END__