commit
62195b7a68
1 changed files with 17 additions and 0 deletions
17
test/test_alelint_autocmd.vader
Normal file
17
test/test_alelint_autocmd.vader
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
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
|
Reference in a new issue