Class: OneCookieServlet

Inherits:
WEBrick::HTTPServlet::AbstractServlet
  • Object
show all
Defined in:
lib/mechanize/test_case.rb

Instance Method Summary collapse

Instance Method Details

#do_GET(req, res) ⇒ Object



401
402
403
404
405
406
407
408
# File 'lib/mechanize/test_case.rb', line 401

def do_GET(req, res)
  cookie = WEBrick::Cookie.new("foo", "bar")
  cookie.path = "/"
  cookie.expires = Time.now + 86400
  res.cookies << cookie
  res['Content-Type'] = "text/html"
  res.body = "<html><body>hello</body></html>"
end