Add autocommand test

This commit is contained in:
Bjorn Neergaard 2016-10-13 09:06:03 -05:00
parent 02e42feeaa
commit 0e6f406fe0
No known key found for this signature in database
GPG Key ID: D8F4DB0CE841305D
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