Class: ContentTypeServlet
- Inherits:
-
WEBrick::HTTPServlet::AbstractServlet
- Object
- WEBrick::HTTPServlet::AbstractServlet
- ContentTypeServlet
- Defined in:
- lib/mechanize/test_case.rb
Instance Method Summary collapse
Instance Method Details
#do_GET(req, res) ⇒ Object
135 136 137 138 139 |
# File 'lib/mechanize/test_case.rb', line 135 def do_GET(req, res) ct = req.query['ct'] || "text/html; charset=utf-8" res['Content-Type'] = ct res.body = "Hello World" end |