X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/test/handler/test_cmake_lint_handler.vader diff --git a/.vim/bundle/ale/test/handler/test_cmake_lint_handler.vader b/.vim/bundle/ale/test/handler/test_cmake_lint_handler.vader new file mode 100644 index 00000000..31c49c21 --- /dev/null +++ b/.vim/bundle/ale/test/handler/test_cmake_lint_handler.vader @@ -0,0 +1,28 @@ +Before: + runtime ale_linters/cmake/cmake_lint.vim + +After: + call ale#linter#Reset() + +Execute(The cmake_lint handler should handle basic warnings): + AssertEqual + \ [ + \ { + \ 'lnum': 126, + \ 'col': 0, + \ 'type': 'W', + \ 'code': 'C0301', + \ 'text': 'Line too long (136/80)', + \ }, + \ { + \ 'lnum': 139, + \ 'col': 4, + \ 'type': 'W', + \ 'code': 'C0113', + \ 'text': 'Missing COMMENT in statement which allows it', + \ }, + \ ], + \ ale_linters#cmake#cmake_lint#Handle(1, [ + \ 'CMakeLists.txt:126: [C0301] Line too long (136/80)', + \ 'CMakeLists.txt:139,04: [C0113] Missing COMMENT in statement which allows it', + \ ])