diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-25 22:59:27 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-25 22:59:27 -0400 |
commit | 8082d987923d2d6dc0ef3106bb8fa76741d3ffe6 (patch) | |
tree | 434b0fd8f812934a5f3d4a76f65bbe097ea64baf /tests/test_completion.py | |
parent | 0addec3805de1942ede9675213eb2a6f9e242644 (diff) | |
download | cmd2-git-8082d987923d2d6dc0ef3106bb8fa76741d3ffe6.tar.gz |
Removed unit test
Diffstat (limited to 'tests/test_completion.py')
-rw-r--r-- | tests/test_completion.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/test_completion.py b/tests/test_completion.py index 46afee77..31f218bf 100644 --- a/tests/test_completion.py +++ b/tests/test_completion.py @@ -92,17 +92,6 @@ def complete_tester(text, line, begidx, endidx, app): return first_match -def test_complete_add_opening_quote(cmd2_app): - text = 'Space' - line = 'command -f {}'.format(text) - endidx = len(line) - begidx = endidx - len(text) - - import readline - new_line = readline.get_line_buffer() - - assert new_line == cmd2_app.flag_based_complete(text, line, begidx, endidx, index_dict) == ['Football"'] - def test_cmd2_command_completion_single(cmd2_app): text = 'he' |