diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-02-06 18:20:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 18:20:50 -0500 |
commit | c7ac2e965d025806ce5baddfc718814e3e58d639 (patch) | |
tree | 6e046c2445edf62b024a9389dc719865584dc9cf /tests/test_transcript.py | |
parent | 60a212c1c585f0c4c06ffcfeb9882520af8dbf35 (diff) | |
parent | c4893ea8a132c06bc71b0ddd63801604e6f85177 (diff) | |
download | cmd2-git-c7ac2e965d025806ce5baddfc718814e3e58d639.tar.gz |
Merge pull request #873 from python-cmd2/set_update
Updated set command to support tab completion of values
Diffstat (limited to 'tests/test_transcript.py')
-rw-r--r-- | tests/test_transcript.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_transcript.py b/tests/test_transcript.py index 5739ad8e..64c95b30 100644 --- a/tests/test_transcript.py +++ b/tests/test_transcript.py @@ -16,7 +16,7 @@ import pytest import cmd2 from .conftest import run_cmd, verify_help_text from cmd2 import transcript -from cmd2.utils import StdSim +from cmd2.utils import StdSim, Settable class CmdLineApp(cmd2.Cmd): @@ -31,7 +31,7 @@ class CmdLineApp(cmd2.Cmd): super().__init__(*args, multiline_commands=['orate'], **kwargs) # Make maxrepeats settable at runtime - self.settable['maxrepeats'] = 'Max number of `--repeat`s allowed' + self.add_settable(Settable('maxrepeats', int, 'Max number of `--repeat`s allowed')) self.intro = 'This is an intro banner ...' |