summaryrefslogtreecommitdiff
path: root/tests/test_run_pyscript.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-06-29 17:36:46 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-06-29 17:36:46 -0400
commitda7020c26c6bbc871c94587ba10f751e53f7911b (patch)
tree6e2e2e8aaf7c18e344c4eb87c8acd661dc90d79e /tests/test_run_pyscript.py
parent31da70efe7160439eb6ab13f46739993f4d4cd7f (diff)
downloadcmd2-git-da7020c26c6bbc871c94587ba10f751e53f7911b.tar.gz
Remove load, _relative_load, pyscript aliases which
These commands were renamed in the last release, but aliases were created along with warnings to help aid the transition. The command aliases are now being removed in this release.
Diffstat (limited to 'tests/test_run_pyscript.py')
-rw-r--r--tests/test_run_pyscript.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_run_pyscript.py b/tests/test_run_pyscript.py
index 9eb33b31..50b1e301 100644
--- a/tests/test_run_pyscript.py
+++ b/tests/test_run_pyscript.py
@@ -84,8 +84,3 @@ def test_run_pyscript_stop(base_app, request):
python_script = os.path.join(test_dir, 'pyscript', 'stop.py')
stop = base_app.onecmd_plus_hooks('run_pyscript {}'.format(python_script))
assert stop
-
-def test_pyscript_deprecated(base_app):
- """Delete this when pyscript alias is removed"""
- _, err = run_cmd(base_app, "pyscript fake")
- assert "pyscript has been renamed and will be removed" in err[-1]