File Coverage

blib/lib/App/PAIA/Command/patron.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package App::PAIA::Command::patron;
2 4     4   1429 use strict;
  4         6  
  4         96  
3 4     4   25 use v5.10;
  4         8  
  4         116  
4 4     4   15 use parent 'App::PAIA::Command';
  4         6  
  4         23  
5              
6             our $VERSION = '0.30';
7              
8             sub _execute {
9 2     2   4 my ($self, $opt, $args) = @_;
10              
11 2         10 $self->core_request( 'GET', 'patron' );
12             }
13              
14             1;
15             __END__