File Coverage

lib/Drogo/Server.pm
Criterion Covered Total %
statement 5 6 83.3
branch 0 2 0.0
condition n/a
subroutine 3 4 75.0
pod 0 3 0.0
total 8 15 53.3


line stmt bran cond sub pod time code
1             package Drogo::Server;
2 1     1   6 use strict;
  1         38  
  1         100  
3              
4             my %SERVER_VARIABLES;
5              
6 15     15 0 21 sub initialize { }
7 15     15 0 21 sub cleanup { }
8 0 0   0 0   sub post_limit { shift->variable('post_limit') || 1_048_576 }
9              
10             =head1 NAME
11              
12             Drogo::Server - Shared methods for server implementations
13              
14             =cut
15              
16             =head1 AUTHORS
17              
18             Bizowie
19              
20             =head1 COPYRIGHT AND LICENSE
21              
22             Copyright (C) 2013 Bizowie
23              
24             This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
25              
26             =cut
27              
28             1;