File Coverage

blib/lib/Apache/LoadAvgLimit/GetAvg.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Apache::LoadAvgLimit::GetAvg;
2              
3 1     1   696 use strict;
  1         3  
  1         48  
4 1     1   6 use vars qw($VERSION @ISA @EXPORT_OK);
  1         1  
  1         158  
5              
6             require Exporter;
7             require DynaLoader;
8             require AutoLoader;
9              
10             @ISA = qw(Exporter DynaLoader);
11             @EXPORT_OK = qw( get_loadavg );
12              
13             $VERSION = '0.04';
14              
15             bootstrap Apache::LoadAvgLimit::GetAvg $VERSION;
16              
17             1;
18             __END__