(self)
| 441 | assert ghosts == [] |
| 442 | |
| 443 | def test_rewrites_fuzzy_match_case(self): |
| 444 | out, ghosts = strip_ghost_wikilinks( |
| 445 | "See [[concepts/AI-Agents]] now.", |
| 446 | {"concepts/ai-agents"}, |
| 447 | ) |
| 448 | assert out == "See [[concepts/ai-agents]] now." |
| 449 | assert ghosts == [] |
| 450 | |
| 451 | def test_rewrites_fuzzy_match_unicode(self): |
| 452 | # File on disk has full-width ) |
nothing calls this directly
no test coverage detected