2016-10-13 10:06:03 -04:00
|
|
|
Before:
|
2017-12-10 08:03:03 -05:00
|
|
|
let g:pre_success = 0
|
|
|
|
let g:post_success = 0
|
2017-06-06 04:54:17 -04:00
|
|
|
let g:ale_run_synchronously = 1
|
|
|
|
|
2018-03-03 11:22:56 -05:00
|
|
|
unlet! b:ale_linted
|
|
|
|
|
2016-10-13 10:06:03 -04:00
|
|
|
After:
|
2017-06-06 04:54:17 -04:00
|
|
|
let g:ale_run_synchronously = 0
|
2016-10-24 15:21:32 -04:00
|
|
|
let g:ale_buffer_info = {}
|
2016-10-13 10:06:03 -04:00
|
|
|
|
2018-03-03 11:22:56 -05:00
|
|
|
try
|
|
|
|
augroup! VaderTest
|
|
|
|
catch
|
|
|
|
endtry
|
|
|
|
|
|
|
|
Execute(Run a lint cycle, and check that a variable is set in the autocmd):
|
2017-07-13 19:29:35 -04:00
|
|
|
augroup VaderTest
|
|
|
|
autocmd!
|
2017-12-10 08:03:03 -05:00
|
|
|
autocmd User ALELintPre let g:pre_success = 1
|
|
|
|
autocmd User ALELintPost let g:post_success = 1
|
2017-07-13 19:29:35 -04:00
|
|
|
augroup end
|
2016-10-24 15:21:32 -04:00
|
|
|
|
2016-10-13 10:06:03 -04:00
|
|
|
call ale#Lint()
|
2016-10-24 15:21:32 -04:00
|
|
|
|
2017-12-10 08:03:03 -05:00
|
|
|
AssertEqual g:pre_success, 1
|
|
|
|
AssertEqual g:post_success, 1
|
2018-03-03 11:22:56 -05: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
|