File Coverage

blib/lib/Test2/Event/Waiting.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Test2::Event::Waiting;
2 57     57   492 use strict;
  57         58  
  57         1252  
3 57     57   165 use warnings;
  57         56  
  57         2030  
4              
5             our $VERSION = '0.000043';
6             $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
7              
8 57     57   173 use base 'Test2::Event';
  57         988  
  57         4398  
9              
10 1     1 1 6 sub global { 1 };
11              
12 13     13 1 35 sub summary { "IPC is waiting for children to finish..." }
13              
14             1;
15              
16             __END__