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   1713 use strict;
  4         6  
  4         105  
3 4     4   28 use v5.10;
  4         8  
  4         94  
4 4     4   11 use parent 'App::PAIA::Command';
  4         7  
  4         13  
5              
6             sub _execute {
7 0     0     my ($self, $opt, $args) = @_;
8              
9 0           $self->core_request('GET', 'fees');
10             }
11              
12             1;
13             __END__