diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unit/test_utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/test_utils.py b/tests/unit/test_utils.py index 4b70918..dcbf8b8 100644 --- a/tests/unit/test_utils.py +++ b/tests/unit/test_utils.py @@ -90,6 +90,11 @@ def test_parse_comma_separated_list(value, expected): ['f.py:E,F', 'g.py:G,H'], [('f.py', ['E', 'F']), ('g.py', ['G', 'H'])], ), + # six-digits codes are allowed + ( + 'f.py: ABC123', + [('f.py', ['ABC123'])], + ) ), ) def test_parse_files_to_codes_mapping(value, expected): |
