The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

&Apache::ASP::CGI::do_self( NoState => 1 );
__END__
<% use lib '.'; use T; $t =T->new(); %>
<%
if(%{$Request->ServerVariables()}) {
$t->ok();
} else {
$t->not_ok('could not get the environment / server variables');
}
# $Request->{Method}, defaults to GET
$t->eok($Request->{Method} eq 'GET', "\$Request->{Method} eq 'GET'");
%>
<% $t->done; %>