summaryrefslogtreecommitdiffhomepage
path: root/test/ruby
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2022-05-10 01:53:23 +0100
committerAndrei Zeliankou <zelenkov@nginx.com>2022-05-10 01:53:23 +0100
commit1bffba6d1e798825a00e0b754a62b5b3961a7363 (patch)
tree4195c81c4ce6294a8edd5d80f42775f21635495b /test/ruby
parent0032543fa65f454c471c968998190b027c1ff270 (diff)
downloadunit-1bffba6d1e798825a00e0b754a62b5b3961a7363.tar.gz
unit-1bffba6d1e798825a00e0b754a62b5b3961a7363.tar.bz2
Tests: added test for "SCRIPT_NAME" variable in Ruby.
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/variables/config.ru1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/variables/config.ru b/test/ruby/variables/config.ru
index 55d01796..e335e049 100644
--- a/test/ruby/variables/config.ru
+++ b/test/ruby/variables/config.ru
@@ -8,6 +8,7 @@ app = Proc.new do |env|
'Request-Method' => env['REQUEST_METHOD'],
'Request-Uri' => env['REQUEST_URI'],
'Http-Host' => env['HTTP_HOST'],
+ 'Script-Name' => env['SCRIPT_NAME'],
'Server-Protocol' => env['SERVER_PROTOCOL'],
'Server-Software' => env['SERVER_SOFTWARE'],
'Custom-Header' => env['HTTP_CUSTOM_HEADER'],