()
| 40 | |
| 41 | |
| 42 | def test_group(): |
| 43 | cli = Group("cli", params=[Option(["-a"])], commands=[Command("x"), Command("y")]) |
| 44 | assert _get_words(cli, [], "") == ["x", "y"] |
| 45 | assert _get_words(cli, [], "-") == ["-a", "--help"] |
| 46 | |
| 47 | |
| 48 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…