File Coverage

blib/lib/Megaport/Locations.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 Megaport::Locations;
2 3     3   10 use parent 'Megaport::Internal::_Result';
  3         2  
  3         11  
3              
4 3     3   133 use 5.10.0;
  3         6  
5 3     3   8 use strict;
  3         2  
  3         37  
6 3     3   8 use warnings;
  3         2  
  3         98  
7              
8             use Class::Tiny {
9 3         23 _request => {
10             pkey => 'id',
11             method => 'GET',
12             path => '/locations'
13             }
14 3     3   11 };
  3         2  
15              
16             1;
17             __END__