(self, list_response)
| 6 | |
| 7 | class FakeS3Client: |
| 8 | def __init__(self, list_response): |
| 9 | self.list_response = list_response |
| 10 | self.head_calls = 0 |
| 11 | |
| 12 | async def __aenter__(self): |
| 13 | return self |
nothing calls this directly
no outgoing calls
no test coverage detected