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   1980 use strict;
  2         3  
  2         56  
3 2     2   5 use vars qw($VERSION @EXPORT);
  2         3  
  2         100  
4              
5             BEGIN{
6 2 50   2   30 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
7             }
8              
9 2     2   7 use Exporter ();
  2         2  
  2         40  
10             @CPAN::ISA = ('Exporter');
11 2     2   5 use CPAN;
  2         4  
  2         388  
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__