diff options
author | Eric Lin <anselor@gmail.com> | 2018-05-17 18:08:52 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-05-17 18:08:52 -0400 |
commit | ff89bad1b0dd2a608081db5a8fa299ef43d66bc5 (patch) | |
tree | 5b5ba5f355d4026e563af3491ee6758642833f10 /tests/pyscript/media_movies_list3.py | |
parent | 371284d20370a8e85dd8527d9bbcc6267b335cde (diff) | |
download | cmd2-git-ff89bad1b0dd2a608081db5a8fa299ef43d66bc5.tar.gz |
Suppresses stdout and stderr output by default when calling an application command from pyscript.
Added support for tab completing application commands in ipython shell
Updated unit tests scripts to set cmd_echo to True to validate command output.
Diffstat (limited to 'tests/pyscript/media_movies_list3.py')
-rw-r--r-- | tests/pyscript/media_movies_list3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/pyscript/media_movies_list3.py b/tests/pyscript/media_movies_list3.py index 4fcf1288..bdbdfceb 100644 --- a/tests/pyscript/media_movies_list3.py +++ b/tests/pyscript/media_movies_list3.py @@ -1 +1,2 @@ -app('media movies list')
\ No newline at end of file +app.cmd_echo = True +app('media movies list') |