(self)
| 992 | self.assertEqual(len(c), 1) |
| 993 | |
| 994 | def test_localhost_domain_contents(self): |
| 995 | c = CookieJar() |
| 996 | |
| 997 | interact_netscape(c, "http://localhost", "foo=bar; domain=localhost;") |
| 998 | |
| 999 | self.assertEqual(c._cookies[".localhost"]["/"]["foo"].value, "bar") |
| 1000 | |
| 1001 | def test_localhost_domain_contents_2(self): |
| 1002 | c = CookieJar() |
nothing calls this directly
no test coverage detected