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
2016-10-17 20:14:21 -05:00

17 lines
326 B
Text

Before:
let g:success = 0
augroup VaderTest
autocmd!
autocmd User ALELint let g:success = 1
augroup end
After:
augroup! VaderTest
Given vim (Vimscript):
set nocompatible
Execute (Run ALE):
call ale#Lint()
call ale#engine#WaitForJobs(2000)
Then (Autocommand should have run):
AssertEqual g:success, 1