(self, url: str, response: MockedResponse)
| 427 | responses: dict[str, MockedResponse] = {} |
| 428 | |
| 429 | def add(self, url: str, response: MockedResponse) -> None: |
| 430 | self.responses[url] = response |
| 431 | |
| 432 | def get(self, url: str, *args, **kwargs) -> MockedResponse: |
| 433 | data = {"url": url, "args": list(args), "kwargs": kwargs} |
no outgoing calls