File Coverage

blib/lib/EntityModel/Web/Header.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 EntityModel::Web::Header;
2             {
3             $EntityModel::Web::Header::VERSION = '0.004';
4             }
5             use EntityModel::Class {
6 3         32 name => 'string',
7             value => 'string',
8 3     3   26534 };
  3         73671  
9              
10             =head1 NAME
11              
12             EntityModel::Web::Header - HTTP header abstraction
13              
14             =head1 VERSION
15              
16             version 0.004
17              
18             =head1 SYNOPSIS
19              
20             use EntityModel::Web::Header;
21             my $hdr = EntityModel::Web::Header->new(
22             name => 'Content-Type',
23             value => 'text/html',
24             );
25             print $hdr->as_text;
26              
27             =head1 DESCRIPTION
28              
29             =cut
30              
31             =head1 METHODS
32              
33             =cut
34              
35             1;
36              
37             __END__