diff options
author | kmvanbrunt <kmvanbrunt@gmail.com> | 2019-03-01 18:20:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 18:20:43 -0500 |
commit | de701086ff832bad0f0d97ffb10c2159d56ede7d (patch) | |
tree | a9c5dc40d5afc41f7ebec564816f0330e896b74e /tests/pyscript/help.py | |
parent | d3208c84c72bc1f3280c80b9d9854f33631c6b61 (diff) | |
parent | daf5e2ba47d8b12b9e371d843ac5942cf7eb6c9d (diff) | |
download | cmd2-git-de701086ff832bad0f0d97ffb10c2159d56ede7d.tar.gz |
Merge pull request #630 from python-cmd2/pyscript_overhaul
Pyscript overhaul
Diffstat (limited to 'tests/pyscript/help.py')
-rw-r--r-- | tests/pyscript/help.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/pyscript/help.py b/tests/pyscript/help.py index 3f24246d..2e69d79f 100644 --- a/tests/pyscript/help.py +++ b/tests/pyscript/help.py @@ -1,3 +1,6 @@ # flake8: noqa F821 app.cmd_echo = True -app.help() +app('help') + +# Exercise py_quit() in unit test +quit() |