diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-13 17:59:04 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-13 17:59:04 -0400 |
commit | ed56264038258c24eda81d6f897b7b64cc0dc948 (patch) | |
tree | 50f665887d38d861359b1cc79d472819b9abee1f | |
parent | 95174ffefa826db104d09a1af661ab210cfb1344 (diff) | |
download | cmd2-git-ed56264038258c24eda81d6f897b7b64cc0dc948.tar.gz |
Increased code coverage
-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) |