1Apache::TestReport(3) User Contributed Perl DocumentationApache::TestReport(3)
2
3
4
6 Apache::TestReport - A parent class for generating bug/success reports
7
9 use Apache::TestReport;
10 Apache::TestReport->new(@ARGV)->run;
11
13 This class is used to generate a bug or a success report, providing
14 information about the system the code was running on.
15
17 config
18 return the information about user's system
19
20 report_to
21 return a string containing the email address the report should be sent
22 to
23
24 postit_note
25 return a string to close the report with, e.g.:
26
27 my($to, $where) = split '@', $self->report_to;
28 return <<EOF;
29 Note: Complete the rest of the details and post this bug report to
30 $to <at> $where. To subscribe to the list send an empty
31 email to $to-subscribe\@$where.
32
33
34
35perl v5.38.0 2023-07-20 Apache::TestReport(3)