File Coverage

blib/lib/FCGI/Client/Record.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package FCGI::Client::Record;
2 1     1   9 use Any::Moose;
  1         4  
  1         13  
3 1     1   947 use FCGI::Client::Constant;
  1         3  
  1         10  
4 1     1   1469 use FCGI::Client::RecordHeader;
  1         188  
  1         139  
5              
6             has header => ( is => 'ro', isa => 'FCGI::Client::RecordHeader', handles => [qw/request_id content_length type/] );
7             has content => ( is => 'ro', isa => 'Str' );
8              
9             __PACKAGE__->meta->make_immutable;
10             __END__