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   254 use strict;
  35         74  
  35         1023  
3 35     35   200 use warnings;
  35         82  
  35         1993  
4              
5             our $VERSION = '1.302180';
6              
7 35     35   220 BEGIN { require Test2::Hub; our @ISA = qw(Test2::Hub) }
  35         1494  
8 35     35   226 use Test2::Util::HashBase;
  35         84  
  35         337  
9              
10             sub init {
11 41     41 0 66 my $self = shift;
12 41         153 $self->SUPER::init();
13 41         90 $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__