File Coverage

blib/lib/App/TemplateServer/Context.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package App::TemplateServer::Context;
2 2     2   12078 use Moose;
  0            
  0            
3              
4             has 'server' => (
5             is => 'ro',
6             isa => 'HTTP::Daemon',
7             );
8              
9             has 'data' => (
10             is => 'ro',
11             isa => 'HashRef',
12             );
13              
14             has 'request' => (
15             is => 'ro',
16             isa => 'HTTP::Request',
17             );
18              
19             1;