File Coverage

blib/lib/Test2/API/InterceptResult/Hub.pm
Criterion Covered Total %
statement 14 16 87.5
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 3 0.0
total 20 26 76.9


line stmt bran cond sub pod time code
1             package Test2::API::InterceptResult::Hub;
2 35     35   249 use strict;
  35         83  
  35         1031  
3 35     35   195 use warnings;
  35         81  
  35         2122  
4              
5             our $VERSION = '1.302182';
6              
7 35     35   223 BEGIN { require Test2::Hub; our @ISA = qw(Test2::Hub) }
  35         1410  
8 35     35   251 use Test2::Util::HashBase;
  35         79  
  35         301  
9              
10             sub init {
11 41     41 0 68 my $self = shift;
12 41         151 $self->SUPER::init();
13 41         109 $self->{+NESTED} = 0;
14             }
15              
16             sub inherit {
17 0     0 0   my $self = shift;
18              
19 0           $self->{+NESTED} = 0;
20             }
21              
22       2 0   sub terminate { }
23              
24             1;
25              
26             __END__
27              
28             =pod
29              
30             =encoding UTF-8
31              
32             =head1 NAME
33              
34             Test2::API::InterceptResult::Hub - Hub used by InterceptResult.
35              
36             =head1 SOURCE
37              
38             The source code repository for Test2 can be found at
39             F<http://github.com/Test-More/test-more/>.
40              
41             =head1 MAINTAINERS
42              
43             =over 4
44              
45             =item Chad Granum E<lt>exodist@cpan.orgE<gt>
46              
47             =back
48              
49             =head1 AUTHORS
50              
51             =over 4
52              
53             =item Chad Granum E<lt>exodist@cpan.orgE<gt>
54              
55             =back
56              
57             =head1 COPYRIGHT
58              
59             Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
60              
61             This program is free software; you can redistribute it and/or
62             modify it under the same terms as Perl itself.
63              
64             See F<http://dev.perl.org/licenses/>
65              
66             =cut