summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
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):