(url, **kwargs)
| 84 | calls = {} |
| 85 | |
| 86 | def fake_get(url, **kwargs): |
| 87 | calls["url"] = url |
| 88 | calls["kwargs"] = kwargs |
| 89 | return FakeResponse(status_code=200, payload={"status": "ok"}) |
| 90 | |
| 91 | monkeypatch.setattr(codex2api_upload.cffi_requests, "get", fake_get) |
| 92 |
nothing calls this directly
no test coverage detected