(cmd2_app)
| 627 | |
| 628 | |
| 629 | def test_basic_completion_nomatch(cmd2_app) -> None: |
| 630 | text = "q" |
| 631 | line = f"list_food -f {text}" |
| 632 | endidx = len(line) |
| 633 | begidx = endidx - len(text) |
| 634 | |
| 635 | completions = cmd2_app.basic_complete(text, line, begidx, endidx, food_item_strs) |
| 636 | assert not completions |
| 637 | |
| 638 | |
| 639 | def test_delimiter_completion_partial(cmd2_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…