Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
CPAN /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
01loadme.t
175
B
-r--r--r--
2014-12-27 11:48
02nox.t
1.05
KB
-r--r--r--
2014-12-27 11:48
03pkgs.t
954
B
-r--r--r--
2014-12-27 11:48
10version.t
2.63
KB
-r--r--r--
2014-12-27 11:48
11mirroredby.t
763
B
-r--r--r--
2014-12-27 11:48
Save
Rename
#!./perl if (! eval { require Test::More; 1 }) { printf "1..1\nok 1 # Test::More not available: skipping %s\n", __FILE__; exit; } require Test::More; Test::More->import(tests => 8); # use this first to $CPAN::term can be undefined use_ok( 'CPAN' ); $CPAN::Suppress_readline = $CPAN::Suppress_readline; # silence $CPAN::META = $CPAN::META; # silence $CPAN::term = $CPAN::term; # silence undef $CPAN::term; # this kicks off all the magic use_ok( 'CPAN::Nox' ); # this will be set if $CPAN::term is undefined is( $CPAN::Suppress_readline, 1, 'should set suppress readline flag' ); # all of these modules have XS components, should be marked unavailable my $mod; for $mod (qw( Digest::MD5 LWP Compress::Zlib )) { is( $CPAN::META->has_inst($mod), 0, "$mod should be marked unavailable" ); } # and these will be set to those in CPAN is( scalar @CPAN::Nox::EXPORT, scalar @CPAN::EXPORT, 'should export just what CPAN does' ); is( \&CPAN::Nox::AUTOLOAD, \&CPAN::AUTOLOAD, 'AUTOLOAD should be aliased' ); # Local Variables: # mode: cperl # cperl-indent-level: 2 # End: