HEX
Server: Apache
System: Linux andromeda.lojoweb.com 4.18.0-372.26.1.el8_6.x86_64 #1 SMP Tue Sep 13 06:07:14 EDT 2022 x86_64
User: nakedfoamlojoweb (1056)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/root/proc/thread-self/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;