(self)
| 417 | __test__ = True |
| 418 | |
| 419 | def setUp(self): |
| 420 | super().setUp() |
| 421 | self.chunksize = 4 |
| 422 | self.config = TransferConfig( |
| 423 | max_request_concurrency=1, |
| 424 | multipart_threshold=1, |
| 425 | multipart_chunksize=self.chunksize, |
| 426 | ) |
| 427 | self._manager = TransferManager(self.client, self.config) |
| 428 | self.multipart_id = 'my-upload-id' |
| 429 | |
| 430 | def create_stubbed_responses(self): |
| 431 | return [ |
nothing calls this directly
no test coverage detected