diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-20 22:19:42 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-20 22:19:42 -0400 |
commit | 4baa99081ce382395639677fb04dd931db2a74e8 (patch) | |
tree | fb63aea2766678be4ddf540d18cff25106d744b8 /tests | |
parent | 35ba0d0d5667f0c960a424178010ea6206a0888a (diff) | |
download | cmd2-git-4baa99081ce382395639677fb04dd931db2a74e8.tar.gz |
Changed to use ACArgumentParser-based tab-completion for settable parameter name in set command
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_completion.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_completion.py b/tests/test_completion.py index 94bee7ea..00a120cc 100644 --- a/tests/test_completion.py +++ b/tests/test_completion.py @@ -159,13 +159,6 @@ def test_cmd2_help_completion_nomatch(cmd2_app): begidx = endidx - len(text) assert cmd2_app.complete_help(text, line, begidx, endidx) == [] -def test_complete_set(cmd2_app): - text = 'co' - line = text - endidx = len(line) - begidx = endidx - len(text) - assert cmd2_app.complete_set(text, line, begidx, endidx) == ['colors', 'continuation_prompt'] - def test_shell_command_completion_shortcut(cmd2_app): # Made sure ! runs a shell command and all matches start with ! since there |