File Coverage

blib/lib/cPanel/3rdparty/ModuleInstaller.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


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