Add test for ALEJobStarted

This commit is contained in:
Chris Marchesi 2018-04-27 22:00:50 -07:00
parent b7996803c9
commit 9da015f74f
No known key found for this signature in database
GPG Key ID: 8D6F1589D9834498
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
Given testft (An empty file):
Before:
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#Define('testft', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': has('win32') ? 'cmd' : 'true',
\ 'command': 'true',
\})
After:
let g:ale_run_synchronously = 0
let g:ale_buffer_info = {}
try
augroup! VaderTest
catch
endtry
unlet! g:job_started_success
delfunction TestCallback
call ale#linter#Reset()
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
call ale#Lint()
AssertEqual g:job_started_success, 1