(self)
| 96 | assert paths == ["/tmp/dir/photo.png"] |
| 97 | |
| 98 | def test_empty_string(self): |
| 99 | text, paths = parse_inline_refs("") |
| 100 | assert paths == [] |
| 101 | assert text == "" |
| 102 | |
| 103 | def test_collapses_spaces(self): |
| 104 | text, _ = parse_inline_refs("before @file:x.png after") |
nothing calls this directly
no test coverage detected