Hub.pm revision 1.1.1.1
1package Test2::API::InterceptResult::Hub;
2use strict;
3use warnings;
4
5our $VERSION = '1.302190';
6
7BEGIN { require Test2::Hub; our @ISA = qw(Test2::Hub) }
8use Test2::Util::HashBase;
9
10sub init {
11    my $self = shift;
12    $self->SUPER::init();
13    $self->{+NESTED} = 0;
14}
15
16sub inherit {
17    my $self = shift;
18
19    $self->{+NESTED} = 0;
20}
21
22sub terminate { }
23
241;
25
26__END__
27
28=pod
29
30=encoding UTF-8
31
32=head1 NAME
33
34Test2::API::InterceptResult::Hub - Hub used by InterceptResult.
35
36=head1 SOURCE
37
38The source code repository for Test2 can be found at
39F<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
59Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
60
61This program is free software; you can redistribute it and/or
62modify it under the same terms as Perl itself.
63
64See F<http://dev.perl.org/licenses/>
65
66=cut
67