summaryrefslogtreecommitdiff
path: root/tests/test_cmd2.py
Commit message (Collapse)AuthorAgeFilesLines
* Updated async_alert() to account for self.prompt not matching Readline's ↵Kevin Van Brunt2021-09-141-21/+16
| | | | current prompt.
* Added self.last_result unit tests for run_script, _relative_run_script, and ↵Kevin Van Brunt2021-08-251-1/+33
| | | | set commands.
* Fixed extra space appended to each alias by "alias list" command.Kevin Van Brunt2021-08-251-2/+54
| | | | Added self.last_result unit tests for alias, edit, eof, help, macro, quit, shortcuts, and run_pyscript commands.
* set command output now uses SimpleTable.Kevin Van Brunt2021-08-191-18/+29
| | | | | | | Tabled tab completion now includes divider row. Tab completion results for aliases, macros, and Settables wrap long fields. SimpleTable now accepts blank for the divider character. It is identical to passing None. Removed --verbose flag from set command so the descriptions always show.
* Fixing tests on Python 3.10Kevin Van Brunt2021-06-171-4/+4
|
* do_eof() now just calls the quit functionKevin Van Brunt2021-05-171-1/+1
|
* Removed cmd2.Cmd.quit_on_sigint.Kevin Van Brunt2021-04-301-25/+2
|
* Stopping a shell command with Ctrl-C now raises a KeyboardInterrupt to ↵Kevin Van Brunt2021-04-301-0/+17
| | | | | | support stopping a text script which ran the shell command. On POSIX systems, shell commands and processes being piped to are now run in the user's preferred shell instead of /bin/sh.
* Changed default behavior of runcmds_plus_hooks() to not stop when Ctrl-C is ↵Kevin Van Brunt2021-04-301-7/+7
| | | | pressed and instead run the next command in its list.
* Renamed silent_startup_script to silence_startup_script for clarityKevin Van Brunt2021-04-281-4/+4
|
* Style changes from running black on Python 3.9Kevin Van Brunt2021-04-271-1/+1
|
* Increased unit test coverage for pexcept()Kevin Van Brunt2021-04-131-0/+28
|
* Updated main code to use f-stringsKevin Van Brunt2021-04-131-3/+3
|
* Renamed use_ipython keyword parameter of cmd2.Cmd.__init__() to include_ipy.Kevin Van Brunt2021-03-301-42/+10
| | | | | | | | | | Added include_py keyword parameter to cmd2.Cmd.__init__(). If False, then the py command will not be available. Removed ability to run Python commands from the command line with py. Made banners and exit messages of Python and IPython consistent. Changed utils.is_text_file() to raise OSError if file cannot be read.
* No longer using -1 as an exit codeexit_codeKevin Van Brunt2021-03-231-1/+1
|
* onecmd_plus_hooks() now sets self.exit_code when a SystemExit handledKevin Van Brunt2021-03-231-1/+4
|
* Resolves comments from PREric Lin2021-03-181-1/+1
|
* Added testsEric Lin2021-03-181-1/+2
|
* Each CommandSet's settables are defined separately. cmd2.Cmd searches all ↵Eric Lin2021-03-181-4/+3
| | | | | | | | registered CommandSets for settables. Settables can now set any attribute on any object passed to it. The name the user sees may be set to a different value than what the actual attribute is. Cmd2 will now aggregate all settables on the cmd2.Cmd instance with each installed CommandSet.
* Added cmd2.exceptions.PassThroughExceptionexception_passthroughKevin Van Brunt2021-03-021-1/+16
|
* Deprecate Python 3.5Todd Leonhardt2021-02-201-8/+3
|
* Fixed black, isort, flake8, and doc8 issuesTodd Leonhardt2021-02-191-8/+9
|
* Merge branch 'master' into blackTodd Leonhardt2021-02-191-16/+36
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # cmd2/__init__.py # cmd2/argparse_completer.py # cmd2/argparse_custom.py # cmd2/cmd2.py # cmd2/decorators.py # cmd2/exceptions.py # cmd2/utils.py # examples/arg_decorators.py # examples/argparse_completion.py # examples/modular_commands_main.py # tests/test_argparse_completer.py # tests/test_argparse_custom.py # tests/test_cmd2.py # tests/test_completion.py # tests/test_history.py
| * Merge branch 'master' into 2.0Kevin Van Brunt2021-01-281-4/+13
| |\
| * | Removed --silent flag from alias/macro create since startup scripts can be ↵Kevin Van Brunt2021-01-221-14/+0
| | | | | | | | | | | | | | | | | | run silently. Removed --with_silent flag from alias/macro list since startup scripts can be run silently.
| * | Merge branch 'master' into 2.0Kevin Van Brunt2021-01-221-2/+13
| |\ \
| * \ \ Merge branch 'master' into 2.0Todd Leonhardt2020-11-211-18/+0
| |\ \ \
| * \ \ \ Merge branch 'master' into 2.0Todd Leonhardt2020-11-111-10/+28
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # CHANGELOG.md
| * \ \ \ \ Merge branch 'master' into 2.0Kevin Van Brunt2020-09-171-0/+30
| |\ \ \ \ \
| * | | | | | Updated unit tests for read_input()Kevin Van Brunt2020-09-051-0/+36
| | | | | | |
| * | | | | | Refactored complete() to handle custom behavior from read_input()Kevin Van Brunt2020-08-311-4/+4
| | | | | | |
* | | | | | | Add in isort changesTodd Leonhardt2021-01-311-5/+15
| | | | | | |
* | | | | | | Attempt to fix remaining black failuresTodd Leonhardt2021-01-311-4/+3
| | | | | | |
* | | | | | | Add black for automatic code formatTodd Leonhardt2021-01-311-66/+292
| |_|_|_|_|/ |/| | | | |
* | | | | | Added option to run startup scripts silentlyKevin Van Brunt2021-01-221-4/+13
| |_|_|_|/ |/| | | |
* | | | | Changed isort to force wrapping of imports to reduce merge conflicts from ↵Eric Lin2021-01-221-2/+12
| | | | | | | | | | | | | | | | | | | | minor import changes.
* | | | | Skip a test which is failing on Python 3.8 and 3.9 for now to fix a unit testTodd Leonhardt2021-01-211-0/+1
| |_|_|/ |/| | |
* | | | feat(utils): probe editors in system pathMikhail Ushanov2020-11-171-18/+0
| |_|/ |/| | | | | | | | Signed-off-by: Mikhail Ushanov <gm.mephisto@gmail.com>
* | | Format multiline docstrings to match other help messagesBambu2020-10-091-0/+15
| | | | | | | | | | | | Changed cmd2 do_cmd to dedent docstrings using `pydoc.getdoc`. This patch provides output for docstrings that look like using argparse or a single line docstring
* | | Fixed issue where quoted redirectors and terminators in aliases and macros ↵Kevin Van Brunt2020-09-301-10/+13
| |/ |/| | | | | | | | | were not being restored when read from a startup script.
* | Added --silent flag to alias/macro create.Kevin Van Brunt2020-09-101-0/+30
| | | | | | | | Added --with_silent flag to alias/macro list.
* | Added unit tests for CommandSet callbacksKevin Van Brunt2020-09-011-4/+4
|/
* the with_argparse() decorator was incorrectly using a parsed statement ↵1.3.7Eric Lin2020-08-271-0/+17
| | | | object to search for the original function arguments. Switched to search for the original statement value instead
* Marked with_arparser_and_unknown_args deprecated and consolidatedEric Lin2020-08-041-2/+2
| | | | implementation as an option to with_argparser instead.
* Removed pwarning() calls when command raises SystemExitKevin Van Brunt2020-05-281-0/+11
| | | | Added unit tests
* Added info on semantic versioning and branching strategy to CONTRIBUTING.mdTodd Leonhardt2020-04-241-4/+15
| | | | | | | Also: - Added isort to Pipenv dev - Added setup.cfg to make it easy to run flake8, doc8, and isort directly from the command line without using invoke - Ran isort to sort includes
* Fix unit test which made incorrect assumption that vi editor would exist on ↵Todd Leonhardt2020-04-231-8/+3
| | | | all Linux systems
* Merge branch 'master' into table_creatorTodd Leonhardt2020-04-151-26/+8
|\
| * Simplfied _redirect_output() by raising exception instead of returning boolKevin Van Brunt2020-04-111-26/+8
| |
* | Initial commit of table creation APIKevin Van Brunt2020-04-091-4/+2
|/