mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-09 13:02:28 +08:00
Split up the flake8 and ansible-lint handlers
This commit is contained in:
33
test/handler/test_ansible_lint_handler.vader
Normal file
33
test/handler/test_ansible_lint_handler.vader
Normal file
@@ -0,0 +1,33 @@
|
||||
Before:
|
||||
runtime ale_linters/ansible/ansible_lint.vim
|
||||
|
||||
After:
|
||||
call ale#linter#Reset()
|
||||
|
||||
Execute(The ansible-lint handler should handle basic errors):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 35,
|
||||
\ 'col': 0,
|
||||
\ 'type': 'E',
|
||||
\ 'text': "EANSIBLE0002: Trailing whitespace",
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#ansible#ansible_lint#Handle(42, [
|
||||
\ "test.yml:35: [EANSIBLE0002] Trailing whitespace",
|
||||
\ ])
|
||||
|
||||
Execute (The ansible-lint handler should handle names with spaces):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 6,
|
||||
\ 'col': 6,
|
||||
\ 'type': 'E',
|
||||
\ 'text': 'E111: indentation is not a multiple of four',
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#python#flake8#Handle(42, [
|
||||
\ 'C:\something\with spaces.yml:6:6: E111 indentation is not a multiple of four',
|
||||
\ ])
|
||||
Reference in New Issue
Block a user