(self)
| 1776 | class Header204Test(SimpleHandlerTestCase): |
| 1777 | class Handler(RequestHandler): |
| 1778 | def get(self): |
| 1779 | self.set_status(204) |
| 1780 | self.finish() |
| 1781 | |
| 1782 | def test_204_headers(self): |
| 1783 | response = self.fetch("/") |
nothing calls this directly
no test coverage detected