diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-16 14:08:13 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-16 14:08:13 -0400 |
commit | ddb7b9243bcbfaf7e419e61b9cb9e0f49aa752b3 (patch) | |
tree | b116b60d6bfd52ab37d3568028810c30c1b40257 /tests/conftest.py | |
parent | 3636ffe8af04ec0d04769599520c53838d872f7f (diff) | |
parent | 1707ab8d5ee53b809af0d6ebbe5c12a48850dbe5 (diff) | |
download | cmd2-git-ddb7b9243bcbfaf7e419e61b9cb9e0f49aa752b3.tar.gz |
Merge branch 'master' into default_sort_key
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index c0aea4a6..e09e07b1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -44,8 +44,8 @@ def verify_help_text(cmd2_app: cmd2.Cmd, help_output: Union[str, List[str]]) -> # Help text for the history command -HELP_HISTORY = """Usage: history [-h] [-r | -e | -o FILE | -t TRANSCRIPT | -c] [-s] [-x] [-v] - [-a] +HELP_HISTORY = """Usage: history [-h] [-r | -e | -o FILE | -t TRANSCRIPT_FILE | -c] [-s] [-x] + [-v] [-a] [arg] View, run, edit, save, or clear previously entered commands @@ -61,9 +61,9 @@ 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, --output-file FILE + -o, --output_file FILE output commands to a script file, implies -s - -t, --transcript TRANSCRIPT + -t, --transcript TRANSCRIPT_FILE output commands and results to a transcript file, implies -s -c, --clear clear all history |