File Coverage

blib/lib/Test/Environment/Plugin/Apache2.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Test::Environment::Plugin::Apache2;
2              
3             =head1 NAME
4              
5             Test::Environment::Plugin::Apache2 - mock Apache2 modules to test mod_perl2 handlers
6              
7             =head1 SYNOPSIS
8              
9             use Test::Environment qw{
10             Apache2
11             };
12              
13              
14             =head1 DESCRIPTION
15              
16             This module will just sets:
17              
18             unshift @INC, File::Spec->catdir(File::Basename::dirname(__FILE__), 'Apache');
19              
20             So that the mock Apache2 modules are found and loaded from there. No need to
21             have following modules in order to test L handlers.
22              
23             L (L),
24             L (L),
25             L (L)
26              
27             =cut
28              
29 1     1   5 use warnings;
  1         2  
  1         36  
30 1     1   6 use strict;
  1         1  
  1         40  
31              
32             our $VERSION = '0.06';
33              
34 1     1   5 use File::Basename qw();
  1         2  
  1         23  
35 1     1   5 use File::Spec qw();
  1         1  
  1         58  
36              
37             unshift @INC, File::Spec->catdir(File::Basename::dirname(__FILE__), 'Apache2');
38              
39             1;
40              
41              
42             __END__