File Coverage

blib/lib/App/PAIA/Command/fees.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 15 80.0


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