line_length: Allow mapping values with long unbreakable lines

This commit is contained in:
Allan Lewis
2016-09-12 15:40:27 +01:00
parent 5b98cd2053
commit d017631aff
2 changed files with 11 additions and 0 deletions

View File

@@ -84,6 +84,8 @@ class LineLengthTestCase(RuleTestCase):
'another:\n'
' - https://localhost/very/very/long/url\n'
'...\n', conf)
self.check('---\n'
'long_line: http://localhost/very/very/long/url\n', conf)
conf = 'line-length: {max: 20, allow-non-breakable-words: no}'
self.check('---\n' + 30 * 'A' + '\n', conf, problem=(2, 21))
@@ -106,3 +108,6 @@ class LineLengthTestCase(RuleTestCase):
'another:\n'
' - https://localhost/very/very/long/url\n'
'...\n', conf, problem=(5, 21))
self.check('---\n'
'long_line: http://localhost/very/very/long/url\n'
'...\n', conf, problem=(2, 21))