Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /proc/self/root/proc/1544360/root/usr/share/doc/perl-Test-Simple/t/Legacy/Test2/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/proc/1544360/root/usr/share/doc/perl-Test-Simple/t/Legacy/Test2/Subtest.t
use strict;
use warnings;

use Test::More;
use Test2::API qw/intercept/;

my $res = intercept {
    subtest foo => sub {
        ok(1, "check");
    };
};

is(@$res, 2, "2 results");

isa_ok($res->[0], 'Test2::Event::Note');
is($res->[0]->message, 'Subtest: foo', "got subtest note");

isa_ok($res->[1], 'Test2::Event::Subtest');
ok($res->[1]->pass, "subtest passed");

my $subs = $res->[1]->subevents;
is(@$subs, 2, "got all subevents");

isa_ok($subs->[0], 'Test2::Event::Ok');
is($subs->[0]->pass, 1, "subtest ok passed");
is($subs->[0]->name, 'check', "subtest ok name");

isa_ok($subs->[1], 'Test2::Event::Plan');
is($subs->[1]->max, 1, "subtest plan is 1");

done_testing;

Spamworldpro Mini