File Coverage

blib/lib/Test2/Plugin/DieOnFail.pm
Criterion Covered Total %
statement 14 14 100.0
branch 3 4 75.0
condition n/a
subroutine 5 5 100.0
pod n/a
total 22 23 95.6


line stmt bran cond sub pod time code
1             package Test2::Plugin::DieOnFail;
2 1     1   522 use strict;
  1         3  
  1         31  
3 1     1   6 use warnings;
  1         2  
  1         56  
4              
5             our $VERSION = '0.000153';
6              
7 1     1   6 use Test2::API qw/test2_add_callback_context_release/;
  1         3  
  1         160  
8              
9             my $LOADED = 0;
10             sub import {
11 1 50   1   14 return if $LOADED++;
12              
13             test2_add_callback_context_release(sub {
14 11     11   15072 my $ctx = shift;
15 11 100       38 return if $ctx->hub->is_passing;
16 2         29 $ctx->throw("(Die On Fail)");
17 1         9 });
18             }
19              
20             1;
21              
22             __END__