(cmd2_app)
| 675 | |
| 676 | |
| 677 | def test_delimiter_completion_nomatch(cmd2_app) -> None: |
| 678 | text = "/nothing_to_see" |
| 679 | line = f"command {text}" |
| 680 | endidx = len(line) |
| 681 | begidx = endidx - len(text) |
| 682 | |
| 683 | completions = cmd2_app.delimiter_complete(text, line, begidx, endidx, delimited_strs, "/") |
| 684 | assert not completions |
| 685 | |
| 686 | |
| 687 | def test_tokens_for_completion_quoted(cmd2_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…