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   1600 use strict;
  4         6  
  4         94  
3 4     4   28 use v5.10;
  4         9  
  4         109  
4 4     4   41 use parent 'App::PAIA::Command';
  4         5  
  4         15  
5              
6             our $VERSION = '0.29';
7              
8 4     4   213 use App::PAIA::JSON;
  4         5  
  4         311  
9              
10             sub _execute {
11 1     1   2 my ($self, $opt, $args) = @_;
12              
13 1         7 $self->core_request('GET', 'items');
14             }
15              
16             1;
17             __END__