(self)
| 394 | |
| 395 | class TestNormalizeTarget: |
| 396 | def test_lowercases(self): |
| 397 | assert _normalize_target("concepts/AI-Agents") == "concepts/ai-agents" |
| 398 | |
| 399 | def test_underscore_to_hyphen(self): |
| 400 | assert _normalize_target("concepts/gist_memory") == "concepts/gist-memory" |
nothing calls this directly
no test coverage detected