summaryrefslogtreecommitdiff
path: root/test/test_alelint_autocmd.vader
blob: 4503005b438c09e01f8cfb3895dd380db64f210d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Before:
  let g:success = 0
  let g:ale_run_synchronously = 1

After:
  let g:ale_run_synchronously = 0
  let g:ale_buffer_info = {}
  augroup! VaderTest

Execute (Run a lint cycle, and check that a variable is set in the autocmd):
  augroup VaderTest
    autocmd!
    autocmd User ALELint let g:success = 1
  augroup end

  call ale#Lint()

  AssertEqual g:success, 1