diff options
-rw-r--r-- | tests/test_argparse_completer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_argparse_completer.py b/tests/test_argparse_completer.py index e6fadfa9..f2a0b01e 100644 --- a/tests/test_argparse_completer.py +++ b/tests/test_argparse_completer.py @@ -286,7 +286,8 @@ def test_help(ac_app, command): ('music', 'creab', []), ('music create', '', ['jazz', 'rock']), ('music crea', 'jazz', []), - ('music create', 'foo', []) + ('music create', 'foo', []), + ('fake create', '', []), ]) def test_complete_help(ac_app, command, text, completions): line = 'help {} {}'.format(command, text) |