File Coverage

blib/lib/Test2/Event/Waiting.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 3 3 100.0
total 28 28 100.0


line stmt bran cond sub pod time code
1             package Test2::Event::Waiting;
2 246     246   2183 use strict;
  246         518  
  246         7315  
3 246     246   1257 use warnings;
  246         490  
  246         13472  
4              
5             our $VERSION = '1.302180';
6              
7              
8 246     246   1437 BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) }
  246         9005  
9 246     246   1592 use Test2::Util::HashBase;
  246         541  
  246         1617  
10              
11 1     1 1 8 sub global { 1 };
12              
13 13     13 1 115 sub summary { "IPC is waiting for children to finish..." }
14              
15             sub facet_data {
16 12     12 1 37 my $self = shift;
17              
18 12         167 my $out = $self->common_facet_data;
19              
20 12         44 push @{$out->{info}} => {
  12         108  
21             tag => 'INFO',
22             debug => 0,
23             details => $self->summary,
24             };
25              
26 12         47 return $out;
27             }
28              
29             1;
30              
31             __END__