⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.209
Server IP:
97.74.87.16
Server:
Linux 16.87.74.97.host.secureserver.net 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
perl-Sub-Exporter
/
t
/
View File Name :
inherited.t
#!/usr/bin/perl -T use strict; use warnings; =head1 TEST PURPOSE These tests check that the inherited form of a routine is the exported one. =cut use Test::More tests => 3; BEGIN { use_ok('Sub::Exporter'); } package E::Parent; use Sub::Exporter -setup => { exports => [ qw(foo) ] }; sub foo { return 1; } package E::Child; use base qw(E::Parent); sub foo { return 2; } package Test::Sub::Exporter::EPARENT; E::Parent->import('foo'); main::is(foo(), 1, "get result of parent's import"); package Test::Sub::Exporter::ECHILD; E::Child->import('foo'); main::is(foo(), 2, "get result of child's import");