xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/acceptance/try_it_skip.t (revision 5759b3d249badf144a6240f7eec4dcf9df003e6b)
1use strict;
2use warnings;
3
4use Test2::API qw/context/;
5
6sub plan {
7    my $ctx = context();
8    $ctx->plan(@_);
9    $ctx->release;
10}
11
12plan(0, skip_all => 'testing skip all');
13
14die "Should not see this";
15
161;
17