Method: QuotedValueCookieServlet#do_GET
- Defined in:
- lib/mechanize/test_case/quoted_value_cookie_servlet.rb
permalink #do_GET(req, res) ⇒ Object
[View source]
3 4 5 6 7 8 9 10 |
# File 'lib/mechanize/test_case/quoted_value_cookie_servlet.rb', line 3 def do_GET(req, res) = WEBrick::Cookie.new("quoted", "\"value\"") .path = "/" .expires = Time.now + 86400 res. << res['Content-Type'] = "text/html" res.body = "<html><body>hello</body></html>" end |