X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/test/handler/test_djlint_handler.vader diff --git a/.vim/bundle/ale/test/handler/test_djlint_handler.vader b/.vim/bundle/ale/test/handler/test_djlint_handler.vader new file mode 100644 index 00000000..3bf916b5 --- /dev/null +++ b/.vim/bundle/ale/test/handler/test_djlint_handler.vader @@ -0,0 +1,21 @@ +Before: + runtime ale_linters/html/djlint.vim + +After: + call ale#linter#Reset() + +Execute(The Djlint handler should parse output with a column correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 47, + \ 'vcol': 1, + \ 'col': 8, + \ 'code': 'H008', + \ 'text': 'Attributes should be double quoted.', + \ 'type': 'W' + \ } + \ ], + \ ale#handlers#djlint#Handle(0, [ + \ 'H008 47:8 Attributes should be double quoted.' + \ ])