install.fairie/dotfiles/.vim/plugged/ale/test/handler/test_dogma_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

30 lines
615 B
Text

Before:
runtime ale_linters/elixir/dogma.vim
After:
call ale#linter#Reset()
Execute(The dogma handler should parse lines correctly):
AssertEqual
\ [
\ {
\ 'bufnr': 347,
\ 'lnum': 18,
\ 'col': 5,
\ 'text': 'Some error',
\ 'type': 'E',
\ },
\ {
\ 'bufnr': 347,
\ 'lnum': 19,
\ 'col': 7,
\ 'text': 'Some warning',
\ 'type': 'W',
\ },
\ ],
\ ale_linters#elixir#dogma#Handle(347, [
\ 'This line should be ignored completely',
\ 'lib/filename.ex:18:5: C: Some error',
\ 'lib/filename.ex:19:7: R: Some warning',
\ ])