diff options
author | Eric Lin <anselor@gmail.com> | 2018-05-18 18:53:44 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-05-18 18:53:44 -0400 |
commit | 6652557779faa0cdc4aac781e62f2b4f3b44b836 (patch) | |
tree | 4b43ff8c0a89452174775d203cd89f8a050c1763 /tests/test_bashcompletion.py | |
parent | 8125d45412cce07b1316ef19fdcbc98deeb0a57a (diff) | |
download | cmd2-git-6652557779faa0cdc4aac781e62f2b4f3b44b836.tar.gz |
Some fixes to autocompleter to make it easier to do delimited and file completion. Saving state - more to come.
Diffstat (limited to 'tests/test_bashcompletion.py')
-rw-r--r-- | tests/test_bashcompletion.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_bashcompletion.py b/tests/test_bashcompletion.py index ceae2aa9..298bdf1e 100644 --- a/tests/test_bashcompletion.py +++ b/tests/test_bashcompletion.py @@ -139,15 +139,13 @@ def test_invalid_ifs(parser1, mock): @pytest.mark.parametrize('comp_line, exp_out, exp_err', [ ('media ', 'movies\013shows', ''), ('media mo', 'movies', ''), + ('media movies list -a "J', '"John Boyega"\013"Jake Lloyd"', ''), + ('media movies list ', '', ''), ('media movies add ', '\013\013 ', ''' Hint: TITLE Movie Title'''), - ('media movies list -a "J', '"John Boyega"\013"Jake Lloyd"', ''), - ('media movies list ', '', '') ]) def test_commands(parser1, capfd, mock, comp_line, exp_out, exp_err): - completer = CompletionFinder() - mock.patch.dict(os.environ, {'_ARGCOMPLETE': '1', '_ARGCOMPLETE_IFS': '\013', 'COMP_TYPE': '63', @@ -157,6 +155,8 @@ def test_commands(parser1, capfd, mock, comp_line, exp_out, exp_err): mock.patch.object(os, 'fdopen', my_fdopen) with pytest.raises(SystemExit): + completer = CompletionFinder() + choices = {'actor': query_actors, # function } autocompleter = AutoCompleter(parser1, arg_choices=choices) |