(self)
| 1247 | self.assertFalse(req.has_header("Cookie")) |
| 1248 | |
| 1249 | def test_quote_cookie_value(self): |
| 1250 | c = CookieJar(policy=DefaultCookiePolicy(rfc2965=True)) |
| 1251 | interact_2965(c, "http://www.acme.com/", r'foo=\b"a"r; Version=1') |
| 1252 | h = interact_2965(c, "http://www.acme.com/") |
| 1253 | self.assertEqual(h, r'$Version=1; foo=\\b\"a\"r') |
| 1254 | |
| 1255 | def test_missing_final_slash(self): |
| 1256 | # Missing slash from request URL's abs_path should be assumed present. |
nothing calls this directly
no test coverage detected