()
| 105 | |
| 106 | |
| 107 | def test_help_option(): |
| 108 | cli = Group("cli", commands=[Command("with"), Command("no", add_help_option=False)]) |
| 109 | assert _get_words(cli, ["with"], "--") == ["--help"] |
| 110 | assert _get_words(cli, ["no"], "--") == [] |
| 111 | |
| 112 | |
| 113 | def test_argument_order(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…