|
NAMEApache::TestHandler - a few response handlers and helpers SYNOPSIS package My::Test;
use Apache::TestHandler ();
sub handler {
my ($r) = @_;
my $result = do_my_test;
Apache::TestHandler::ok1 $r, $result;
}
sub handler2 {
my ($r) = @_;
my $result = do_my_test;
Apache::TestHandler::ok $r, $result;
}
DESCRIPTION"Apache::TestHandler" provides 2 very simple response handler. FUNCTIONS
SEE ALSOThe Apache-Test tutorial: <http://perl.apache.org/docs/general/testing/testing.html>. Apache::Test. AUTHORDoug MacEachern, Geoffrey Young, Stas Bekman, Torsten Förtsch and others. Questions can be asked at the test-dev <at> httpd.apache.org list For more information see: http://httpd.apache.org/test/.
|