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 /
File-Fetch /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
01_File-Fetch.t
8.15
KB
-r--r--r--
2014-12-27 11:48
null_subclass.t
560
B
-r--r--r--
2014-12-27 11:48
Save
Rename
use strict; use warnings; use Test::More tests => 5; my $parent_class = 'File::Fetch'; my $child_class = 'File::Fetch::Subclass'; use_ok( $parent_class ); my $ff_parent = $parent_class->new( uri => 'http://example.com/index.html' ); isa_ok( $ff_parent, $parent_class ); can_ok( $child_class, qw( new fetch ) ); my $ff_child = $child_class->new( uri => 'http://example.com/index.html' ); isa_ok( $ff_child, $child_class ); isa_ok( $ff_child, $parent_class ); BEGIN { package File::Fetch::Subclass; use vars qw(@ISA); unshift @ISA, qw(File::Fetch); }