Tests: perl module.
This commit is contained in:
8
test/perl/query_string/psgi.pl
Normal file
8
test/perl/query_string/psgi.pl
Normal file
@@ -0,0 +1,8 @@
|
||||
my $app = sub {
|
||||
my ($environ) = @_;
|
||||
|
||||
return ['200', [
|
||||
'Content-Length' => 0,
|
||||
'Query-String' => $environ->{'QUERY_STRING'}
|
||||
], []];
|
||||
};
|
||||
Reference in New Issue
Block a user