File Coverage

blib/lib/Kubernetes/REST/HTTPResponse.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Kubernetes::REST::HTTPResponse;
2 2     2   487 use Moo;
  2         5  
  2         15  
3 2     2   690 use Types::Standard qw/Str Int/;
  2         5  
  2         18  
4              
5             has content => (is => 'ro', isa => Str);
6             has status => (is => 'ro', isa => Int);
7              
8             1;