aboutsummaryrefslogtreecommitdiffstats
path: root/test/webrick/webrick.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'test/webrick/webrick.cgi')
-rw-r--r--test/webrick/webrick.cgi4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/webrick/webrick.cgi b/test/webrick/webrick.cgi
index 43c1af825c..a294fa72f9 100644
--- a/test/webrick/webrick.cgi
+++ b/test/webrick/webrick.cgi
@@ -4,7 +4,9 @@ require "webrick/cgi"
class TestApp < WEBrick::CGI
def do_GET(req, res)
res["content-type"] = "text/plain"
- if (p = req.path_info) && p.length > 0
+ if req.path_info == "/dumpenv"
+ res.body = Marshal.dump(ENV.to_hash)
+ elsif (p = req.path_info) && p.length > 0
res.body = p
elsif (q = req.query).size > 0
res.body = q.keys.sort.collect{|key|