File Coverage

blib/lib/Statistics/Burst.pm
Criterion Covered Total %
statement 67 70 95.7
branch 7 10 70.0
condition 3 3 100.0
subroutine 14 14 100.0
pod 7 10 70.0
total 98 107 91.5


line stmt bran cond sub pod time code
1             package Statistics::Burst;
2              
3 1     1   31480 use 5.008004;
  1         3  
  1         31  
4 1     1   4 use strict;
  1         1  
  1         28  
5 1     1   5 use warnings;
  1         11  
  1         31  
6              
7             require Exporter;
8 1     1   6984 use AutoLoader qw(AUTOLOAD);
  1         1353  
  1         4  
9              
10             our @ISA = qw(Exporter);
11              
12             # Items to export into callers namespace by default. Note: do not export
13             # names by default without a very good reason. Use EXPORT_OK instead.
14             # Do not simply export all your public functions/methods/constants.
15              
16             # This allows declaration use Statistics::Burst ':all';
17             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18             # will save memory.
19             our %EXPORT_TAGS = ( 'all' => [ qw(
20            
21             ) ] );
22              
23             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24              
25             our @EXPORT = qw(
26            
27             );
28              
29             our $VERSION = '0.2';
30              
31              
32             # Preloaded methods go here.
33              
34             # Autoload methods go after =cut, and are processed by the autosplit program.
35              
36             1;
37             __END__