(self)
| 158 | |
| 159 | class EchoHeadersHandler(RequestHandler): |
| 160 | def get(self): |
| 161 | self.write(json_encode(dict(self.request.headers.get_all()))) |
| 162 | |
| 163 | |
| 164 | # These tests end up getting run redundantly: once here with the default |
nothing calls this directly
no test coverage detected