File Coverage

blib/lib/WWW/VastAI/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::VastAI::HTTPResponse;
2             our $VERSION = '0.001';
3             # ABSTRACT: Internal HTTP response value object for pluggable IO backends
4              
5 11     11   877161 use Moo;
  11         22  
  11         1894  
6              
7             has status => ( is => 'ro', required => 1 );
8             has content => ( is => 'ro', default => sub { '' } );
9              
10             1;
11              
12             __END__