(self)
| 1228 | return dict(body_timeout=3600, max_body_size=4096) |
| 1229 | |
| 1230 | def get_http_client(self): |
| 1231 | # body_producer doesn't work on curl_httpclient, so override the |
| 1232 | # configured AsyncHTTPClient implementation. |
| 1233 | return SimpleAsyncHTTPClient() |
| 1234 | |
| 1235 | def test_small_body(self): |
| 1236 | response = self.fetch("/buffered", method="PUT", body=b"a" * 4096) |
nothing calls this directly
no test coverage detected