(self)
| 985 | self.assertEqual(len(c), 4) |
| 986 | |
| 987 | def test_localhost_domain(self): |
| 988 | c = CookieJar() |
| 989 | |
| 990 | interact_netscape(c, "http://localhost", "foo=bar; domain=localhost;") |
| 991 | |
| 992 | self.assertEqual(len(c), 1) |
| 993 | |
| 994 | def test_localhost_domain_contents(self): |
| 995 | c = CookieJar() |
nothing calls this directly
no test coverage detected