diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-15 00:09:26 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-15 00:09:26 -0400 |
commit | 122ff0c664383aff780902d66cb7e990aa8d810b (patch) | |
tree | 7a1b755bbce16f61a0210a7b23c4422ccf8e4195 /tests/test_cmd2.py | |
parent | 8d882f529f564bbb03769e2454a73a01984dc11b (diff) | |
download | cmd2-git-122ff0c664383aff780902d66cb7e990aa8d810b.tar.gz |
Fixing unit tests
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 72643308..f79eb983 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1934,8 +1934,8 @@ def test_onecmd_raw_str_quit(outsim_app): def test_get_all_commands(base_app): # Verify that the base app has the expected commands commands = base_app.get_all_commands() - expected_commands = ['_relative_load', 'alias', 'edit', 'eof', 'help', 'history', 'load', 'macro', - 'py', 'pyscript', 'quit', 'set', 'shell', 'shortcuts'] + expected_commands = ['_relative_load', '_relative_run_script', 'alias', 'edit', 'eof', 'help', 'history', 'load', + 'macro', 'py', 'pyscript', 'quit', 'run_pyscript', 'run_script', 'set', 'shell', 'shortcuts'] assert commands == expected_commands def test_get_help_topics(base_app): |