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   1581 use strict;
  4         6  
  4         92  
3 4     4   28 use v5.10;
  4         8  
  4         111  
4 4     4   12 use parent 'App::PAIA::Command';
  4         5  
  4         18  
5              
6             our $VERSION = '0.30';
7              
8 4     4   212 use App::PAIA::JSON;
  4         5  
  4         283  
9              
10             sub _execute {
11 1     1   1 my ($self, $opt, $args) = @_;
12              
13 1         4 $self->core_request('GET', 'items');
14             }
15              
16             1;
17             __END__