File Coverage

lib/Drogo/RequestResponse.pm
Criterion Covered Total %
statement 6 10 60.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 14 57.1


line stmt bran cond sub pod time code
1             package Drogo::RequestResponse;
2              
3 1         98 use base qw(
4             Drogo::Guts
5 1     1   6 );
  1         3  
6              
7 1     1   5 use strict;
  1         3  
  1         69  
8              
9             sub new
10             {
11 0     0 0   my $class = shift;
12 0           my $self = {};
13 0           bless($self);
14 0           return $self;
15             }
16              
17             =head1 AUTHORS
18              
19             Bizowie
20              
21             =head1 COPYRIGHT AND LICENSE
22              
23             Copyright (C) 2013 Bizowie
24              
25             This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
26              
27             =cut
28              
29             1;