blob: 3816eb035a7cfa6acbca6abc9743bcc8ec58f4e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use strict;
use warnings;
use Test2::API qw/context/;
sub plan {
my $ctx = context();
$ctx->plan(@_);
$ctx->release;
}
plan(0, skip_all => 'testing skip all');
die "Should not see this";
1;
|