diff options
author | Todd Leonhardt <tleonhardt@gmail.com> | 2017-06-28 15:43:15 -0400 |
---|---|---|
committer | Todd Leonhardt <tleonhardt@gmail.com> | 2017-06-28 15:43:15 -0400 |
commit | 6ea7fc0587ba1645ee4bdd4c610480e55c4a7d96 (patch) | |
tree | 4bfd81f0a45a2e8b33469a3bb6eca20984c768cf /tests/test_cmd2.py | |
parent | 28b5a6b8667f2e105c6c38ef9cf341a0087006fb (diff) | |
download | cmd2-git-6ea7fc0587ba1645ee4bdd4c610480e55c4a7d96.tar.gz |
Removed the ability for load command to load a script from a URL
From what I can tell, this hasn't worked in years and there aren't any unit tests which display how it is supposed to work.
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 4fd9ca1c..ba83e426 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -292,7 +292,7 @@ def test_base_load_default_file(base_app, capsys): # The default file 'command.txt' doesn't exist, so we should get an error message expected = normalize("""ERROR: Problem accessing script from command.txt: -[Errno 2] No such file or directory: 'command.txt.txt' +[Errno 2] No such file or directory: 'command.txt' To enable full traceback, run the following command: 'set debug true' """) assert normalize(str(err)) == expected |