diff options
author | Eric Lin <anselor@gmail.com> | 2018-04-11 15:11:52 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-04-11 15:11:52 -0400 |
commit | 33decb449c61e2a78877563309929c4686ea081e (patch) | |
tree | 85ce1f9b2b893f9daee08b7c61d098bd0752ed2b /tests/conftest.py | |
parent | 52bf16c412eb7933eac159ed0fc6363ccc37a82c (diff) | |
download | cmd2-git-33decb449c61e2a78877563309929c4686ea081e.tar.gz |
Added a with_category decorator that can be used to tag a command category.
Changed the detection of with_argparse decorated commands to be less hacky/brittle.
Now it tags the function with help_summary.
Fixed issue with handling commands that provide a custom help_ function. We can now
redirect the output to a string to be formatted with the other commands.
Added some documentation explaining the new help categories.
Updated unit tests.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 4170a5e1..837e7504 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -34,7 +34,6 @@ set Sets a settable parameter or shows current settings of param shell Execute a command as if at the OS prompt. shortcuts Lists shortcuts (aliases) available. unalias Unsets aliases - """ # Help text for the history command |