diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-26 02:53:13 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-26 02:53:13 -0400 |
commit | 341873618852bca9e3d803ee8e704c04cbba831e (patch) | |
tree | 22959c66e97b0ab97e3be7b8047d104c72b0d04c /tests/conftest.py | |
parent | e0b289b940cd18adab173f65f0413a9575525860 (diff) | |
download | cmd2-git-341873618852bca9e3d803ee8e704c04cbba831e.tar.gz |
First steps in converting all commands to argparse
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index faf1847d..1295a633 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -36,18 +36,18 @@ edit history macro pyscript set shortcuts BASE_HELP_VERBOSE = """ Documented commands (type help <topic>): ================================================================================ -alias Manages aliases +alias Manage aliases edit Edit a file in a text editor help List available commands with "help" or detailed help with "help cmd" history View, run, edit, save, or clear previously entered commands -load Runs commands in script file that is encoded as either ASCII or UTF-8 text -macro Manages macros -py Invoke python command, shell, or script -pyscript Runs a python script file inside the console -quit Exits this application -set Sets a settable parameter or shows current settings of parameters +load Run commands in script file that is encoded as either ASCII or UTF-8 text +macro Manage macros +py Invoke python command or shell +pyscript Run a python script file inside the console +quit Exit this application +set Set a settable parameter or shows current settings of parameters shell Execute a command as if at the OS prompt -shortcuts Lists shortcuts available +shortcuts List shortcuts available """ # Help text for the history command |