(self)
| 404 | assert _normalize_target("summaries/A(B)") == _normalize_target("summaries/A(B)") |
| 405 | |
| 406 | def test_collapses_repeated_hyphens(self): |
| 407 | assert _normalize_target("concepts/foo--bar") == "concepts/foo-bar" |
| 408 | |
| 409 | def test_preserves_path_separator(self): |
| 410 | assert _normalize_target("concepts/Foo") == "concepts/foo" |
nothing calls this directly
no test coverage detected