diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-05 22:04:48 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-05 22:04:48 -0600 |
commit | 537542b8492f3c4d1c56296804ae82c123d0efce (patch) | |
tree | ae217ad988aa33b7aa786325dd79d3b88a289e48 | |
parent | 26d088cc94828879bb1fe43f9713b3b52eb13762 (diff) | |
download | cmd2-git-537542b8492f3c4d1c56296804ae82c123d0efce.tar.gz |
Remove unit test for identchars in aliases
-rw-r--r-- | tests/test_cmd2.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index b6416005..33f5d86e 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1688,12 +1688,6 @@ def test_alias_lookup_invalid_alias(base_app, capsys): out, err = capsys.readouterr() assert "not found" in err -def test_alias_with_invalid_name(base_app, capsys): - run_cmd(base_app, 'alias @ help') - out, err = capsys.readouterr() - assert "can only contain the following characters" in err - - def test_unalias(base_app): # Create an alias run_cmd(base_app, 'alias fake pyscript') |