Merge pull request #108 from neersighted/autocmd2

Add autocommand test
This commit is contained in:
w0rp 2016-10-19 22:44:00 +01:00 committed by GitHub
commit 62195b7a68
1 changed files with 17 additions and 0 deletions

View 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