(self)
| 1633 | class Header304Test(SimpleHandlerTestCase): |
| 1634 | class Handler(RequestHandler): |
| 1635 | def get(self): |
| 1636 | self.set_header("Content-Language", "en_US") |
| 1637 | self.write("hello") |
| 1638 | |
| 1639 | def test_304_headers(self): |
| 1640 | response1 = self.fetch("/") |
nothing calls this directly
no test coverage detected