(self)
| 211 | "quantmind.flows.paper.fetch_url", |
| 212 | new=AsyncMock(return_value=html), |
| 213 | ): |
| 214 | with self.assertRaises(UnsupportedContentTypeError): |
| 215 | await _fetch_paper_source(HttpUrl(url="https://example.test")) |
| 216 | with self.assertRaises(UnsupportedContentTypeError): |
| 217 | await _fetch_paper_source(RawText(text="no physical pages")) |
| 218 | |
| 219 | async def test_doi_requires_an_exact_pdf_resolver(self) -> None: |
nothing calls this directly
no test coverage detected