aboutsummaryrefslogtreecommitdiff
path: root/regress/tests/args-get-slash.pl
blob: e3e7a3bfc5468d26376ea4181f4d032d325d1a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 \/" 400 0/ => 1,
	},
    },
);

1;