stas 2004/06/27 11:46:03
Modified: perl-framework/Apache-Test/lib/Apache TestReportPerl.pm
perl-framework/Apache-Test Changes
Log:
Force projects that use Apache::TestReportPerl to implement
report_to() if they use t/REPORT in their projects.
Revision Changes Path
1.7 +6 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestReportPerl.pm
Index: TestReportPerl.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestReportPerl.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -u -r1.6 -r1.7
--- TestReportPerl.pm 4 Mar 2004 05:51:31 -0000 1.6
+++ TestReportPerl.pm 27 Jun 2004 18:46:03 -0000 1.7
@@ -28,7 +28,12 @@
ModPerl::Config::as_string();
}
-sub report_to { '[email protected]' }
+sub report_to {
+ my $self = shift;
+ my $pkg = ref $self;
+ die "you need to implement $pkg\::report_to() to return the " .
+ "contact email address of your project";
+}
1;
__END__
1.142 +3 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -u -r1.141 -r1.142
--- Changes 27 Jun 2004 18:38:57 -0000 1.141
+++ Changes 27 Jun 2004 18:46:03 -0000 1.142
@@ -8,6 +8,9 @@
=item 1.12-dev
+Force projects that use Apache::TestReportPerl to implement
+report_to() if they use t/REPORT in their projects. [Stas]
+
Add redirect tests [David Wheeler <[EMAIL PROTECTED]>]
add -no-httpd runtime option to allow tests to run without configuring,