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