()
| 326 | |
| 327 | |
| 328 | def test_add_different_name(): |
| 329 | cli = Group("cli", commands={"renamed": Command("original")}) |
| 330 | words = _get_words(cli, [], "") |
| 331 | assert "renamed" in words |
| 332 | assert "original" not in words |
| 333 | |
| 334 | |
| 335 | def test_completion_item_data(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…