(self)
| 1821 | class ClearAllCookiesTest(SimpleHandlerTestCase): |
| 1822 | class Handler(RequestHandler): |
| 1823 | def get(self): |
| 1824 | self.clear_all_cookies() |
| 1825 | self.write("ok") |
| 1826 | |
| 1827 | def test_clear_all_cookies(self): |
| 1828 | response = self.fetch("/", headers={"Cookie": "foo=bar; baz=xyzzy"}) |
nothing calls this directly
no test coverage detected