File Coverage

blib/lib/WWW/Hetzner/HTTPResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package WWW::Hetzner::HTTPResponse;
2              
3             # ABSTRACT: HTTP response object for Hetzner API
4              
5 25     25   3208861 use Moo;
  25         55  
  25         219  
6              
7             our $VERSION = '0.100';
8              
9              
10             has status => (is => 'ro', required => 1);
11              
12              
13             has content => (is => 'ro', default => '');
14              
15              
16              
17             1;
18              
19             __END__