(url, **kwargs)
| 1435 | content = b"%PDF-1.4\nfake" |
| 1436 | |
| 1437 | def fake_http_get(url, **kwargs): |
| 1438 | captured["url"] = url |
| 1439 | captured.update(kwargs) |
| 1440 | return FakeResponse() |
| 1441 | |
| 1442 | monkeypatch.setattr(reading_agent, "_http_get", fake_http_get) |
| 1443 |
nothing calls this directly
no test coverage detected