(self)
| 400 | assert _normalize_target("concepts/gist_memory") == "concepts/gist-memory" |
| 401 | |
| 402 | def test_nfkc_fullwidth_paren(self): |
| 403 | # Full-width ) normalizes to ASCII ) via NFKC |
| 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" |
nothing calls this directly
no test coverage detected