File Coverage

blib/lib/CPAN/Nox.pm
Criterion Covered Total %
statement 13 13 100.0
branch 1 2 50.0
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 20 95.0


line stmt bran cond sub pod time code
1             package CPAN::Nox;
2 2     2   4948 use strict;
  2         14  
  2         93  
3 2     2   12 use vars qw($VERSION @EXPORT);
  2         6  
  2         150  
4              
5             BEGIN{
6 2 50   2   38 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
7             }
8              
9 2     2   16 use Exporter ();
  2         14  
  2         62  
10             @CPAN::ISA = ('Exporter');
11 2     2   11 use CPAN;
  2         14  
  2         387  
12              
13             $VERSION = "5.5001";
14             $CPAN::META->has_inst('Digest::MD5','no');
15             $CPAN::META->has_inst('LWP','no');
16             $CPAN::META->has_inst('Compress::Zlib','no');
17             @EXPORT = @CPAN::EXPORT;
18              
19             *AUTOLOAD = \&CPAN::AUTOLOAD;
20              
21             1;
22              
23             __END__