aboutsummaryrefslogtreecommitdiff
path: root/regress/tests/args-get-slash.pl
diff options
context:
space:
mode:
Diffstat (limited to 'regress/tests/args-get-slash.pl')
-rw-r--r--regress/tests/args-get-slash.pl20
1 files changed, 20 insertions, 0 deletions
diff --git a/regress/tests/args-get-slash.pl b/regress/tests/args-get-slash.pl
new file mode 100644
index 0000000..9406f4b
--- /dev/null
+++ b/regress/tests/args-get-slash.pl
@@ -0,0 +1,20 @@
+use strict;
+use warnings;
+
+our %args = (
+ client => {
+ func => sub {
+ my $self = shift;
+ print "GET /\r\n\r\n";
+ },
+ nocheck => 1
+ },
+ httpd => {
+ loggrep => {
+ qr/"GET \/" 500 0/ => 1,
+ },
+ },
+);
+
+1;
+