summaryrefslogtreecommitdiff
path: root/test/handler/test_markdownlint_handler.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/handler/test_markdownlint_handler.vader')
-rw-r--r--test/handler/test_markdownlint_handler.vader59
1 files changed, 1 insertions, 58 deletions
diff --git a/test/handler/test_markdownlint_handler.vader b/test/handler/test_markdownlint_handler.vader
index f2e6e328..f49dba97 100644
--- a/test/handler/test_markdownlint_handler.vader
+++ b/test/handler/test_markdownlint_handler.vader
@@ -4,64 +4,7 @@ Before:
After:
call ale#linter#Reset()
-Execute(The Markdownlint handler should parse pre v0.19.0 output with single digit line correctly):
- AssertEqual
- \ [
- \ {
- \ 'lnum': 1,
- \ 'code': 'MD013/line-length',
- \ 'text': 'Line length [Expected: 80; Actual: 114]',
- \ 'type': 'W'
- \ }
- \ ],
- \ ale#handlers#markdownlint#Handle(0, [
- \ 'README.md: 1: MD013/line-length Line length [Expected: 80; Actual: 114]'
- \ ])
-
-Execute(The Markdownlint handler should parse pre v0.19.0 output with multi digit line correctly):
- AssertEqual
- \ [
- \ {
- \ 'lnum': 100,
- \ 'code': 'MD013/line-length',
- \ 'text': 'Line length [Expected: 80; Actual: 114]',
- \ 'type': 'W'
- \ }
- \ ],
- \ ale#handlers#markdownlint#Handle(0, [
- \ 'README.md: 100: MD013/line-length Line length [Expected: 80; Actual: 114]'
- \ ])
-
-Execute(The Markdownlint handler should parse post v0.19.0 output with single digit line correctly):
- AssertEqual
- \ [
- \ {
- \ 'lnum': 1,
- \ 'code': 'MD013/line-length',
- \ 'text': 'Line length [Expected: 80; Actual: 114]',
- \ 'type': 'W'
- \ }
- \ ],
- \ ale#handlers#markdownlint#Handle(0, [
- \ 'README.md:1 MD013/line-length Line length [Expected: 80; Actual: 114]'
- \ ])
-
-Execute(The Markdownlint handler should parse post v0.19.0 output with multi digit line correctly):
- AssertEqual
- \ [
- \ {
- \ 'lnum': 100,
- \ 'code': 'MD013/line-length',
- \ 'text': 'Line length [Expected: 80; Actual: 114]',
- \ 'type': 'W'
- \ }
- \ ],
- \ ale#handlers#markdownlint#Handle(0, [
- \ 'README.md:100 MD013/line-length Line length [Expected: 80; Actual: 114]'
- \ ])
-
-
-Execute(The Markdownlint handler should parse post v0.22.0 output with column correctly):
+Execute(The Markdownlint handler should parse output with a column correctly):
AssertEqual
\ [
\ {