2016-10-13 14:06:03 +00:00
|
|
|
Before:
|
2017-12-10 13:03:03 +00:00
|
|
|
let g:pre_success = 0
|
|
|
|
let g:post_success = 0
|
2017-06-06 08:54:17 +00:00
|
|
|
let g:ale_run_synchronously = 1
|
|
|
|
|
2018-03-03 16:22:56 +00:00
|
|
|
unlet! b:ale_linted
|
|
|
|
|
2016-10-13 14:06:03 +00:00
|
|
|
After:
|
2017-06-06 08:54:17 +00:00
|
|
|
let g:ale_run_synchronously = 0
|
2016-10-24 19:21:32 +00:00
|
|
|
let g:ale_buffer_info = {}
|
2016-10-13 14:06:03 +00:00
|
|
|
|
2018-03-03 16:22:56 +00:00
|
|
|
try
|
|
|
|
augroup! VaderTest
|
|
|
|
catch
|
|
|
|
endtry
|
|
|
|
|
|
|
|
Execute(Run a lint cycle, and check that a variable is set in the autocmd):
|
2017-07-13 23:29:35 +00:00
|
|
|
augroup VaderTest
|
|
|
|
autocmd!
|
2017-12-10 13:03:03 +00:00
|
|
|
autocmd User ALELintPre let g:pre_success = 1
|
|
|
|
autocmd User ALELintPost let g:post_success = 1
|
2017-07-13 23:29:35 +00:00
|
|
|
augroup end
|
2016-10-24 19:21:32 +00:00
|
|
|
|
2016-10-13 14:06:03 +00:00
|
|
|
call ale#Lint()
|
2016-10-24 19:21:32 +00:00
|
|
|
|
2017-12-10 13:03:03 +00:00
|
|
|
AssertEqual g:pre_success, 1
|
|
|
|
AssertEqual g:post_success, 1
|
2018-03-03 16:22:56 +00:00
|
|
|
|
|
|
|
Execute(b:ale_linted should be increased after each lint cycle):
|
|
|
|
AssertEqual get(b:, 'ale_linted'), 0
|
|
|
|
|
|
|
|
call ale#Lint()
|
|
|
|
|
|
|
|
AssertEqual get(b:, 'ale_linted'), 1
|
|
|
|
|
|
|
|
call ale#Lint()
|
|
|
|
|
|
|
|
AssertEqual get(b:, 'ale_linted'), 2
|