Cover the SaveEvent function with a test

This commit is contained in:
w0rp 2017-08-01 00:42:22 +01:00
parent a4ffd2f37c
commit 35913d9ce7
1 changed files with 27 additions and 0 deletions

View File

@ -224,3 +224,30 @@ Execute(Linter errors from files should be kept when no other linters are run):
\ 'type': 'E',
\ },
\], GetSimplerLoclist()
Execute(The Save event should respect the buffer number):
let g:ale_linters = {'foobar': ['lint_file_linter']}
Assert filereadable(expand('%:p')), 'The file was not readable'
call ale#events#SaveEvent(bufnr('') + 1)
" We shouldn't get any prblems yet.
AssertEqual [], GetSimplerLoclist()
call ale#events#SaveEvent(bufnr(''))
" We should get them now we used the right buffer number.
AssertEqual [
\ {
\ 'lnum': 1,
\ 'col': 3,
\ 'text': 'file warning',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 2,
\ 'col': 3,
\ 'text': 'file error',
\ 'type': 'E',
\ },
\], GetSimplerLoclist()