()
| 76 | |
| 77 | |
| 78 | def test_extract_doi_from_url_like_text() -> None: |
| 79 | text = "Published version: https://doi.org/10.1038/s44184-025-00175-1." |
| 80 | assert extract_doi(text) == "10.1038/s44184-025-00175-1" |
| 81 | |
| 82 | |
| 83 | def test_extract_arxiv_id_strips_version() -> None: |
nothing calls this directly
no test coverage detected