Class: QuotedValueCookieServlet
- Inherits:
-
WEBrick::HTTPServlet::AbstractServlet
- Object
- WEBrick::HTTPServlet::AbstractServlet
- QuotedValueCookieServlet
- Defined in:
- lib/mechanize/test_case/quoted_value_cookie_servlet.rb
Instance Method Summary collapse
Instance Method Details
#do_GET(req, res) ⇒ Object
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 |