(self, **kwargs)
| 488 | self.sent_bodies.append(params['Body'].read()) |
| 489 | |
| 490 | def get_call_args(self, **kwargs): |
| 491 | default_call_args = { |
| 492 | 'fileobj': self.filename, |
| 493 | 'bucket': self.bucket, |
| 494 | 'key': self.key, |
| 495 | 'extra_args': self.extra_args, |
| 496 | 'subscribers': self.subscribers, |
| 497 | } |
| 498 | default_call_args.update(kwargs) |
| 499 | return CallArgs(**default_call_args) |
| 500 | |
| 501 | def add_multipart_upload_stubbed_responses(self): |
| 502 | self.stubber.add_response( |
no test coverage detected