diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-05-21 16:41:33 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-05-21 16:41:33 +0300 |
commit | 7d224bfc9e39cb7885885bb554ca21ab26f5ddd0 (patch) | |
tree | b64a349507a19c1d3fdc5f6bbfda06e65db806a9 /test/perl | |
parent | 3e8dbfe5ffdfbf525dd115508dc28d15bb81a237 (diff) | |
download | unit-7d224bfc9e39cb7885885bb554ca21ab26f5ddd0.tar.gz unit-7d224bfc9e39cb7885885bb554ca21ab26f5ddd0.tar.bz2 |
Tests: added tests for SERVER_SOFTWARE variable.
Diffstat (limited to 'test/perl')
-rw-r--r-- | test/perl/variables/psgi.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/perl/variables/psgi.pl b/test/perl/variables/psgi.pl index bed20af8..58232c53 100644 --- a/test/perl/variables/psgi.pl +++ b/test/perl/variables/psgi.pl @@ -13,6 +13,7 @@ my $app = sub { 'Request-Uri' => $environ->{'REQUEST_URI'}, 'Http-Host' => $environ->{'HTTP_HOST'}, 'Server-Protocol' => $environ->{'SERVER_PROTOCOL'}, + 'Server-Software' => $environ->{'SERVER_SOFTWARE'}, 'Custom-Header' => $environ->{'HTTP_CUSTOM_HEADER'}, 'Psgi-Version' => $version, 'Psgi-Url-Scheme' => $environ->{'psgi.url_scheme'}, |