ale/test/test_alelint_autocmd.vader

42 lines
953 B
Plaintext
Raw Normal View History

2016-10-13 14:06:03 +00:00
Before:
let g:start = 0
2016-10-13 14:06:03 +00:00
let g:success = 0
2017-06-06 08:54:17 +00:00
let g:ale_run_synchronously = 1
function! TestCallback(buffer, output)
return [{
\ 'lnum': 1,
\ 'col': 3,
\ 'text': 'baz boz',
\}]
endfunction
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': has('win32') ? 'cmd' : 'true',
\ 'command': has('win32') ? 'echo' : 'true',
\})
"let g:ale_linters = {'foobar': ['lint_file_linter']}
2016-10-13 14:06:03 +00:00
After:
2017-06-06 08:54:17 +00:00
let g:ale_run_synchronously = 0
let g:ale_buffer_info = {}
let g:ale_linters = {}
call ale#linter#Reset()
delfunction TestCallback
augroup! VaderTest
2016-10-13 14:06:03 +00:00
Execute (Run a lint cycle, and check that a variable is set in the autocmd):
set filetype=foobar
augroup VaderTest
autocmd!
autocmd User ALEStartLint let g:start = 1
autocmd User ALELint let g:success = 1
augroup end
2016-10-13 14:06:03 +00:00
call ale#Lint()
AssertEqual g:start, 1
2016-10-13 14:06:03 +00:00
AssertEqual g:success, 1