diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-01-17 09:28:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 09:28:43 -0500 |
commit | 91bc999d022a486334b9054859e2ef6f03ca9666 (patch) | |
tree | d71c32f3b47c2b137d6b9543a605feb8380472a7 /tests/conftest.py | |
parent | 6895dea2e19210093e38fa411ef28dfb7f99c32c (diff) | |
parent | 1da904585db4cd1e77c312190149daa946366fa0 (diff) | |
download | cmd2-git-91bc999d022a486334b9054859e2ef6f03ca9666.tar.gz |
Merge pull request #249 from python-cmd2/arglist
decorator changes for replacing optparse with argparse
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 97116b48..387322b1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -15,24 +15,29 @@ import cmd2 # Help text for base cmd2.Cmd application BASE_HELP = """Documented commands (type help <topic>): ======================================== -_relative_load edit history py quit save shell show -cmdenvironment help load pyscript run set shortcuts +edit help history load py pyscript quit set shell shortcuts """ # Help text for the history command -HELP_HISTORY = """history [arg]: lists past commands issued +HELP_HISTORY = """usage: history [-h] [-r | -e | -o FILE] [-s] [arg] - | no arg: list all - | arg is integer: list one history item, by index - | a..b, a:b, a:, ..b -> list history items by a span of indices (inclusive) - | arg is string: list all commands matching string search - | arg is /enclosed in forward-slashes/: regular expression search +run, edit, and save previously entered commands -Usage: history [options] (limit on which commands to include) +positional arguments: + arg empty all history items + a one history item by number + a..b, a:b, a:, ..b items by indices (inclusive) + [string] items containing string + /regex/ items matching regular expression + +optional arguments: + -h, --help show this help message and exit + -r, --run run selected history items + -e, --edit edit and then run selected history items + -o FILE, --output-file FILE + output to file + -s, --script script format; no separation lines -Options: - -h, --help show this help message and exit - -s, --script Script format; no separation lines """ # Output from the shortcuts command with default built-in shortcuts @@ -48,7 +53,6 @@ if sys.platform.startswith('win'): expect_colors = False # Output from the show command with default settings SHOW_TXT = """abbrev: False -autorun_on_edit: False colors: {} continuation_prompt: > debug: False @@ -67,7 +71,6 @@ else: color_str = 'False' SHOW_LONG = """ abbrev: False # Accept abbreviated commands -autorun_on_edit: False # Automatically run files after editing colors: {} # Colorized output (*nix only) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error |