install.fairie/dotfiles/.vim/plugged/ale/test/handler/test_mdl_handler.vader
Git E2E Dev Test Username e149692cc9 git subrepo clone https://github.com/dense-analysis/ale.git ./dotfiles/.vim/plugged/ale
subrepo:
  subdir:   "dotfiles/.vim/plugged/ale"
  merged:   "e4b205440"
upstream:
  origin:   "https://github.com/dense-analysis/ale.git"
  branch:   "master"
  commit:   "e4b205440"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-10-18 10:37:09 -04:00

25 lines
754 B
Text

Before:
runtime ale_linters/markdown/mdl.vim
After:
call ale#linter#Reset()
Execute(The mdl handler should parse output correctly):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'code': 'MD002/first-header-h1',
\ 'text': 'First header should be a top level header',
\ 'type': 'W'
\ },
\ {
\ 'lnum': 18,
\ 'code': 'MD033/no-inline-html',
\ 'text': 'Inline HTML',
\ 'type': 'W'
\ }
\ ],
\ ale_linters#markdown#mdl#Handle(0, [
\ '[{"filename":"README.md","line":1,"rule":"MD002","aliases":["first-header-h1"],"description":"First header should be a top level header"},{"filename":"README.md","line":18,"rule":"MD033","aliases":["no-inline-html"],"description":"Inline HTML"}]'
\ ])