summaryrefslogtreecommitdiff
path: root/tests/test_pragma_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pragma_parser.py')
-rw-r--r--tests/test_pragma_parser.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_pragma_parser.py b/tests/test_pragma_parser.py
index 1aaed30d5..1e5b16b28 100644
--- a/tests/test_pragma_parser.py
+++ b/tests/test_pragma_parser.py
@@ -82,3 +82,11 @@ def test_missing_message():
match = OPTION_PO.search(comment)
with pytest.raises(InvalidPragmaError):
list(parse_pragma(match.group(2)))
+
+
+def test_parse_message_with_dash():
+ comment = "#pylint: disable = raw_input-builtin"
+ match = OPTION_PO.search(comment)
+ res = list(parse_pragma(match.group(2)))
+ assert res[0].action == "disable"
+ assert res[0].messages == ["raw_input-builtin"]