Linux server1.hosting4iran.com 4.18.0-553.123.2.el8_10.x86_64 #1 SMP Thu May 7 15:28:41 EDT 2026 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.102
Domains : 326 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
perl-Test-Simple /
t /
Legacy /
subtest /
Delete
Unzip
Name
Size
Permission
Date
Action
args.t
620
B
-rw-r--r--
2018-03-30 05:53
bail_out.t
1.25
KB
-rw-r--r--
2018-03-30 05:53
basic.t
4.7
KB
-rw-r--r--
2018-03-30 05:53
callback.t
1016
B
-rw-r--r--
2018-03-30 05:53
die.t
535
B
-rw-r--r--
2018-03-30 05:53
do.t
283
B
-rw-r--r--
2018-03-30 05:53
events.t
376
B
-rw-r--r--
2018-03-30 05:53
for_do_t.test
112
B
-rw-r--r--
2018-03-30 05:53
fork.t
1.2
KB
-rw-r--r--
2018-03-30 05:53
implicit_done.t
479
B
-rw-r--r--
2018-03-30 05:53
line_numbers.t
3.77
KB
-rw-r--r--
2018-03-30 05:53
plan.t
1.34
KB
-rw-r--r--
2018-03-30 05:53
predicate.t
4.73
KB
-rw-r--r--
2018-03-30 05:53
singleton.t
712
B
-rw-r--r--
2018-03-30 05:53
threads.t
430
B
-rw-r--r--
2018-03-30 05:53
todo.t
5.33
KB
-rw-r--r--
2018-03-30 05:53
wstat.t
369
B
-rw-r--r--
2018-03-30 05:53
Save
Rename
#!/usr/bin/perl -w BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = ( '../lib', 'lib' ); } else { unshift @INC, 't/lib'; } } use strict; use warnings; use Test::Builder::NoOutput; use Test::More tests => 6; # Formatting may change if we're running under Test::Harness. $ENV{HARNESS_ACTIVE} = 0; { ok defined &subtest, 'subtest() should be exported to our namespace'; is prototype('subtest'), undef, '... has no prototype'; subtest 'subtest with plan', sub { plan tests => 2; ok 1, 'planned subtests should work'; ok 1, '... and support more than one test'; }; subtest 'subtest without plan', sub { plan 'no_plan'; ok 1, 'no_plan subtests should work'; ok 1, '... and support more than one test'; ok 1, '... no matter how many tests are run'; }; subtest 'subtest with implicit done_testing()', sub { ok 1, 'subtests with an implicit done testing should work'; ok 1, '... and support more than one test'; ok 1, '... no matter how many tests are run'; }; subtest 'subtest with explicit done_testing()', sub { ok 1, 'subtests with an explicit done testing should work'; ok 1, '... and support more than one test'; ok 1, '... no matter how many tests are run'; done_testing(); }; }