This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/handler/test_remark_lint_handler.vader
2017-10-19 18:17:04 +09:00

27 lines
809 B
Text

Before:
runtime ale_linters/markdown/remark_lint.vim
Execute(Warning and error messages should be handled correctly):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'col': 4,
\ 'type': 'W',
\ 'text': 'Incorrect list-item indent: add 1 space list-item-indent remark-lint',
\ },
\ {
\ 'lnum': 3,
\ 'col': 5,
\ 'type': 'E',
\ 'text': 'Incorrect list-item indent: remove 1 space list-item-indent remark-lint',
\ },
\ ],
\ ale_linters#markdown#remark_lint#Handle(1, [
\ 'foo.md',
\ ' 1:4 warning Incorrect list-item indent: add 1 space list-item-indent remark-lint',
\ ' 3:5 error Incorrect list-item indent: remove 1 space list-item-indent remark-lint',
\ '',
\ '⚠ 1 warnings',
\ '✘ 1 errors',
\])