You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
369 B
Plaintext
19 lines
369 B
Plaintext
7 years ago
|
Before:
|
||
|
let g:success = 0
|
||
|
let g:ale_run_synchronously = 1
|
||
|
|
||
|
After:
|
||
|
let g:ale_run_synchronously = 0
|
||
|
let g:ale_buffer_info = {}
|
||
|
augroup! VaderTest
|
||
|
|
||
|
Execute (Run a lint cycle, and check that a variable is set in the autocmd):
|
||
|
augroup VaderTest
|
||
|
autocmd!
|
||
|
autocmd User ALELint let g:success = 1
|
||
|
augroup end
|
||
|
|
||
|
call ale#Lint()
|
||
|
|
||
|
AssertEqual g:success, 1
|