This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/test_alelint_autocmd.vader
2017-06-06 09:54:17 +01:00

24 lines
433 B
Text

Before:
let g:success = 0
let g:ale_run_synchronously = 1
augroup VaderTest
autocmd!
autocmd User ALELint let g:success = 1
augroup end
After:
let g:ale_run_synchronously = 0
augroup! VaderTest
let g:ale_buffer_info = {}
Given vim (Some vimscript):
set nocompatible
Execute (Lint it):
call ale#Lint()
call ale#engine#WaitForJobs(2000)
Then (Autocommands should have run):
AssertEqual g:success, 1