1package Test2::EventFacet::About;
2use strict;
3use warnings;
4
5our $VERSION = '1.302175';
6
7BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) }
8use Test2::Util::HashBase qw{ -package -no_display -uuid -eid };
9
101;
11
12__END__
13
14=pod
15
16=encoding UTF-8
17
18=head1 NAME
19
20Test2::EventFacet::About - Facet with event details.
21
22=head1 DESCRIPTION
23
24This facet has information about the event, such as event package.
25
26=head1 FIELDS
27
28=over 4
29
30=item $string = $about->{details}
31
32=item $string = $about->details()
33
34Summary about the event.
35
36=item $package = $about->{package}
37
38=item $package = $about->package()
39
40Event package name.
41
42=item $bool = $about->{no_display}
43
44=item $bool = $about->no_display()
45
46True if the event should be skipped by formatters.
47
48=item $uuid = $about->{uuid}
49
50=item $uuid = $about->uuid()
51
52Will be set to a uuid if uuid tagging was enabled.
53
54=item $uuid = $about->{eid}
55
56=item $uuid = $about->eid()
57
58A unique (for the test job) identifier for the event.
59
60=back
61
62=head1 SOURCE
63
64The source code repository for Test2 can be found at
65F<http://github.com/Test-More/test-more/>.
66
67=head1 MAINTAINERS
68
69=over 4
70
71=item Chad Granum E<lt>exodist@cpan.orgE<gt>
72
73=back
74
75=head1 AUTHORS
76
77=over 4
78
79=item Chad Granum E<lt>exodist@cpan.orgE<gt>
80
81=back
82
83=head1 COPYRIGHT
84
85Copyright 2019 Chad Granum E<lt>exodist@cpan.orgE<gt>.
86
87This program is free software; you can redistribute it and/or
88modify it under the same terms as Perl itself.
89
90See F<http://dev.perl.org/licenses/>
91
92=cut
93