File Coverage

blib/lib/Apache/Voodoo/Loader/Static.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 13 14 92.8


line stmt bran cond sub pod time code
1             package Apache::Voodoo::Loader::Static;
2              
3             $VERSION = "3.0200";
4              
5 2     2   2303 use strict;
  2         4  
  2         99  
6 2     2   11 use base("Apache::Voodoo::Loader");
  2         4  
  2         1152  
7              
8             sub new {
9 2     2 0 1308 my $class = shift;
10 2         4 my $self = {};
11 2         6 bless $self,$class;
12              
13             # bingo...this is a factory
14 2         12 return $self->load_module(shift);
15             }
16              
17             1;
18              
19             ################################################################################
20             # Copyright (c) 2005-2010 Steven Edwards (maverick@smurfbane.org).
21             # All rights reserved.
22             #
23             # You may use and distribute Apache::Voodoo under the terms described in the
24             # LICENSE file include in this package. The summary is it's a legalese version
25             # of the Artistic License :)
26             #
27             ################################################################################