ale/test/test_alejobstarted_autocmd....

47 lines
882 B
Plaintext
Raw Permalink Normal View History

2018-04-28 05:00:50 +00:00
Before:
Save g:ale_buffer_info
2018-04-28 05:00:50 +00:00
let g:job_started_success = 0
let g:ale_run_synchronously = 1
unlet! b:ale_linted
function! TestCallback(buffer, output)
return []
endfunction
call ale#linter#PreventLoading('testft')
2018-04-28 05:00:50 +00:00
call ale#linter#Define('testft', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': has('win32') ? 'cmd' : 'true',
\ 'command': 'true',
\})
After:
Restore
2018-04-28 05:00:50 +00:00
let g:ale_run_synchronously = 0
augroup VaderTest
autocmd!
augroup END
augroup! VaderTest
2018-04-28 05:00:50 +00:00
unlet! g:job_started_success
delfunction TestCallback
call ale#linter#Reset()
Given testft (An empty file):
2018-04-28 05:00:50 +00:00
Execute(Run a lint cycle with an actual job to check for ALEJobStarted):
augroup VaderTest
autocmd!
autocmd User ALEJobStarted let g:job_started_success = 1
augroup END
2018-04-28 05:00:50 +00:00
ALELint
2018-04-28 05:00:50 +00:00
AssertEqual g:job_started_success, 1