blob: d51694ffe03c6c37a875d718a97f7f4afd860173 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
Before:
let g:pre_success = 0
let g:post_success = 0
let g:ale_run_synchronously = 1
unlet! b:ale_linted
After:
let g:ale_run_synchronously = 0
let g:ale_buffer_info = {}
try
augroup! VaderTest
catch
endtry
Execute(Run a lint cycle, and check that a variable is set in the autocmd):
augroup VaderTest
autocmd!
autocmd User ALELintPre let g:pre_success = 1
autocmd User ALELintPost let g:post_success = 1
augroup end
call ale#Lint()
AssertEqual g:pre_success, 1
AssertEqual g:post_success, 1
Execute(b:ale_linted should be increased after each lint cycle):
AssertEqual get(b:, 'ale_linted'), 0
call ale#Lint()
AssertEqual get(b:, 'ale_linted'), 1
call ale#Lint()
AssertEqual get(b:, 'ale_linted'), 2
|