diff options
author | Eric Lin <anselor@gmail.com> | 2018-04-19 12:13:32 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-04-19 12:13:32 -0400 |
commit | c2186332aeb6f59063bb410fca25ed400ce410cd (patch) | |
tree | ccc1d07fcf14f81c6e06d3b9dddcf141f96dcdd2 /tests/test_autocompletion.py | |
parent | ff66a95f399330bfca5b7f3b4dcd18b457574ac4 (diff) | |
download | cmd2-git-c2186332aeb6f59063bb410fca25ed400ce410cd.tar.gz |
Addresses comments on #362
Diffstat (limited to 'tests/test_autocompletion.py')
-rw-r--r-- | tests/test_autocompletion.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/tests/test_autocompletion.py b/tests/test_autocompletion.py index 5f28086a..e68bc104 100644 --- a/tests/test_autocompletion.py +++ b/tests/test_autocompletion.py @@ -1,10 +1,7 @@ """ -Unit/functional testing for readline tab-completion functions in the cmd2.py module. +Unit/functional testing for argparse completer in cmd2 -These are primarily tests related to readline completer functions which handle tab-completion of cmd2/cmd commands, -file system paths, and shell commands. - -Copyright 2017 Todd Leonhardt <todd.leonhardt@gmail.com> +Copyright 2018 Eric Lin <anselor@gmail.com> Released under MIT license, see LICENSE file """ import pytest @@ -257,9 +254,3 @@ def test_autcomp_custom_func_list_and_dict_arg(cmd2_app): first_match = complete_tester(text, line, begidx, endidx, cmd2_app) assert first_match is not None and \ cmd2_app.completion_matches == ['S01E02', 'S01E03', 'S02E01', 'S02E03'] - - - - - - |