(cmd2_app)
| 322 | |
| 323 | |
| 324 | def test_help_completion_nomatch(cmd2_app) -> None: |
| 325 | text = "fakecommand" |
| 326 | line = f"help {text}" |
| 327 | endidx = len(line) |
| 328 | begidx = endidx - len(text) |
| 329 | |
| 330 | completions = cmd2_app.complete(text, line, begidx, endidx) |
| 331 | assert not completions |
| 332 | |
| 333 | |
| 334 | def test_set_allow_style_completion(cmd2_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…