1Apache::TestReport(3) User Contributed Perl DocumentationApache::TestReport(3)
2
3
4

NAME

6       Apache::TestReport - A parent class for generating bug/success reports
7

Synopsis

9         use Apache::TestReport;
10         Apache::TestReport->new(@ARGV)->run;
11

Description

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

Overridable Methods

17       config
18
19       return the information about user's system
20
21       report_to
22
23       return a string containing the email address the report should be sent
24       to
25
26       postit_note
27
28       return a string to close the report with, e.g.:
29
30             my($to, $where) = split '@', $self->report_to;
31             return <<EOF;
32         Note: Complete the rest of the details and post this bug report to
33         $to <at> $where. To subscribe to the list send an empty
34         email to $to-subscribe\@$where.
35
36
37
38perl v5.8.8                       2006-11-19             Apache::TestReport(3)
Impressum