(self)
| 3067 | class RequestSummaryTest(SimpleHandlerTestCase): |
| 3068 | class Handler(RequestHandler): |
| 3069 | def get(self): |
| 3070 | # remote_ip is optional, although it's set by |
| 3071 | # both HTTPServer and WSGIAdapter. |
| 3072 | # Clobber it to make sure it doesn't break logging. |
| 3073 | self.request.remote_ip = None |
| 3074 | self.finish(self._request_summary()) |
| 3075 | |
| 3076 | def test_missing_remote_ip(self): |
| 3077 | resp = self.fetch("/") |
nothing calls this directly
no test coverage detected