summaryrefslogtreecommitdiffhomepage
path: root/test/perl/query_string/psgi.pl
diff options
context:
space:
mode:
Diffstat (limited to 'test/perl/query_string/psgi.pl')
-rw-r--r--test/perl/query_string/psgi.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/perl/query_string/psgi.pl b/test/perl/query_string/psgi.pl
new file mode 100644
index 00000000..87ecc368
--- /dev/null
+++ b/test/perl/query_string/psgi.pl
@@ -0,0 +1,8 @@
+my $app = sub {
+ my ($environ) = @_;
+
+ return ['200', [
+ 'Content-Length' => 0,
+ 'Query-String' => $environ->{'QUERY_STRING'}
+ ], []];
+};