summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-04-22 20:45:13 -0600
committerkotfu <kotfu@kotfu.net>2018-04-22 20:45:13 -0600
commit7cec2eb3689fa6e8c2a36080841f2210dfa94697 (patch)
treedd4bbf68841b4f828ff5b1126122a92a48f97ef9 /tests
parent1c98fe58f126eb3222140bfcb074f3a74346e17a (diff)
downloadcmd2-git-7cec2eb3689fa6e8c2a36080841f2210dfa94697.tar.gz
Submenus now call all hooks
Diffstat (limited to 'tests')
-rw-r--r--tests/test_shlexparsing.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_shlexparsing.py b/tests/test_shlexparsing.py
index 02dc51d3..b69f1898 100644
--- a/tests/test_shlexparsing.py
+++ b/tests/test_shlexparsing.py
@@ -18,10 +18,14 @@ Notes:
Functions in cmd2.py to be modified:
- _complete_statement()
+- parsed() - expands aliases and shortcuts
Changelog Items:
- if self.default_to_shell is true, then redirection and piping is now properly passed to the shell, previously it was truncated
- object passed to do_* methods has changed. It no longer is the pyparsing object, it's a new Statement object. A side effect of this is that we now have a clean interface between the parsing logic and the rest of cmd2. If we need to change the parser in the future, we can do it without breaking anything.
+
+Bugs fixed:
+- submenus now all all hooks, it used to just call precmd and postcmd
"""
import cmd2