add test for markdownlint hander

This commit is contained in:
Ty-Lucas Kelley 2018-03-03 19:32:32 -05:00
parent c572cfd2d2
commit 32091fb8ad
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
Before:
runtime ale_linters/markdown/markdownlint.vim
After:
call ale#linter#Reset()
Execute(The Markdownlint handler should parse output correctly):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'text': '(MD002/first-header-h1) First header should be a top level header [Expected: h1; Actual: h2]',
\ 'type': 'W'
\ },
\ {
\ 'lnum': 298,
\ 'text': '(MD033/no-inline-html) Inline HTML [Element: p]',
\ 'type': 'W'
\ }
\ ],
\ ale#handlers#markdownlint#Handle(0, [
\ 'README.md: 1: MD002/first-header-h1 First header should be a top level header [Expected: h1; Actual: h2]',
\ 'README.md: 298: MD033/no-inline-html Inline HTML [Element: p]'
\ ])