summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-03-02 19:12:53 -0500
committerGitHub <noreply@github.com>2018-03-02 19:12:53 -0500
commit388d48682823a192d349ad877b1fd1ae5d92df44 (patch)
tree3b5b1d9822b947b854dd753be552a8b37fce8077 /tests/test_parsing.py
parent17781f27c49b961526c7e3a5302482744e6a038b (diff)
parentfa9479c228ab498eac8bd91b79bb0b8d04d0be1a (diff)
downloadcmd2-git-388d48682823a192d349ad877b1fd1ae5d92df44.tar.gz
Merge pull request #292 from python-cmd2/abbrev
Removed abbrev attribute
Diffstat (limited to 'tests/test_parsing.py')
-rw-r--r--tests/test_parsing.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index 5a741b57..c7abf07c 100644
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -326,12 +326,6 @@ def test_parse_multiline_ignores_terminators_in_comments(parser):
assert results.terminator[0] == '\n'
assert results.terminator[1] == '\n'
-def test_parse_abbreviated_multiline_not_allowed(parser):
- line = 'multilin command\n'
- results = parser.parseString(line)
- assert results.command == 'multilin'
- assert results.multilineCommand == ''
-
# Unicode support is only present in cmd2 for Python 3
@pytest.mark.skipif(sys.version_info < (3,0), reason="cmd2 unicode support requires python3")
def test_parse_command_with_unicode_args(parser):