1package Test2::Harness::Runner::Preloader::Stage;
2use strict;
3use warnings;
4
5our $VERSION = '1.000082';
6
7use parent 'Test2::Harness::IPC::Process';
8use Test2::Harness::Util::HashBase qw{ <name eager };
9
10sub category { $_[0]->{+CATEGORY} //= 'stage' }
11
121;
13
14__END__
15
16
17=pod
18
19=encoding UTF-8
20
21=head1 NAME
22
23Test2::Harness::Runner::Preloader::Stage - Representation of a persistent stage process.
24
25=head1 DESCRIPTION
26
27This module is responsible for preloading libraries for a specific stage before
28running tests. This entire module is considered an "Implementation Detail".
29Please do not rely on it always staying the same, or even existing in the
30future. Do not use this directly.
31
32=head1 SOURCE
33
34The source code repository for Test2-Harness can be found at
35F<http://github.com/Test-More/Test2-Harness/>.
36
37=head1 MAINTAINERS
38
39=over 4
40
41=item Chad Granum E<lt>exodist@cpan.orgE<gt>
42
43=back
44
45=head1 AUTHORS
46
47=over 4
48
49=item Chad Granum E<lt>exodist@cpan.orgE<gt>
50
51=back
52
53=head1 COPYRIGHT
54
55Copyright 2020 Chad Granum E<lt>exodist7@gmail.comE<gt>.
56
57This program is free software; you can redistribute it and/or
58modify it under the same terms as Perl itself.
59
60See F<http://dev.perl.org/licenses/>
61
62=cut
63