diff options
author | Sebastian Blask <blask@gmx.de> | 2020-07-31 11:14:57 +1200 |
---|---|---|
committer | Sebastian Blask <blask@gmx.de> | 2020-07-31 11:15:13 +1200 |
commit | fbfeae058712068b50cd4745590af1a5b33f7228 (patch) | |
tree | 497a67d996496080c93c6df84328edfebae69273 /test/handler | |
parent | 275b5248e57b457d5d6daf8932915287585078ee (diff) | |
download | ale-fbfeae058712068b50cd4745590af1a5b33f7228.zip |
Support markdownlint rules with multiple slashes
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_markdownlint_handler.vader | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/handler/test_markdownlint_handler.vader b/test/handler/test_markdownlint_handler.vader index 8e9f77a0..f2e6e328 100644 --- a/test/handler/test_markdownlint_handler.vader +++ b/test/handler/test_markdownlint_handler.vader @@ -75,3 +75,17 @@ Execute(The Markdownlint handler should parse post v0.22.0 output with column co \ ale#handlers#markdownlint#Handle(0, [ \ 'README.md:10:20 MD013/line-length Line length [Expected: 80; Actual: 114]' \ ]) + +Execute(The Markdownlint handler should parse output with multiple slashes in rule name correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 10, + \ 'code': 'MD022/blanks-around-headings/blanks-around-headers', + \ 'text': 'Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Above] [Context: "### something"]', + \ 'type': 'W' + \ } + \ ], + \ ale#handlers#markdownlint#Handle(0, [ + \ 'README.md:10 MD022/blanks-around-headings/blanks-around-headers Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Above] [Context: "### something"]' + \ ]) |