File Coverage

blib/lib/Test2/AsyncSubtest/Event/Detach.pm
Criterion Covered Total %
statement 27 27 100.0
branch 4 4 100.0
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 39 39 100.0


line stmt bran cond sub pod time code
1             package Test2::AsyncSubtest::Event::Detach;
2 77     77   536 use strict;
  77         202  
  77         2303  
3 77     77   410 use warnings;
  77         176  
  77         3624  
4              
5             our $VERSION = '0.000155';
6              
7 77     77   547 use base 'Test2::Event';
  77         192  
  77         7539  
8 77     77   537 use Test2::Util::HashBase qw/id/;
  77         163  
  77         631  
9              
10 781     781 1 212787 sub no_display { 1 }
11              
12             sub callback {
13 248     248 1 21591 my $self = shift;
14 248         1862 my ($hub) = @_;
15              
16 248         1291 my $id = $self->{+ID};
17 248         2132 my $ids = $hub->ast_ids;
18              
19 248 100       2593 unless (defined $ids->{$id}) {
20 1         8 require Test2::Event::Exception;
21 1         7 my $trace = $self->trace;
22 1         13 $hub->send(
23             Test2::Event::Exception->new(
24             trace => $trace,
25             error => "Invalid AsyncSubtest detach ID: $id at " . $trace->debug . "\n",
26             )
27             );
28 1         274 return;
29             }
30              
31 247 100       3719 unless (delete $ids->{$id}) {
32 1         6 require Test2::Event::Exception;
33 1         4 my $trace = $self->trace;
34 1         10 $hub->send(
35             Test2::Event::Exception->new(
36             trace => $trace,
37             error => "AsyncSubtest ID $id is not attached at " . $trace->debug . "\n",
38             )
39             );
40 1         193 return;
41             }
42             }
43              
44             1;
45              
46             __END__