File: test_alejobstarted_autocmd.vader

package info (click to toggle)
vim-ale 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,764 kB
  • sloc: sh: 499; python: 311; perl: 31; makefile: 4; xml: 4; javascript: 1
file content (46 lines) | stat: -rw-r--r-- 882 bytes parent folder | download | duplicates (3)
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
39
40
41
42
43
44
45
46
Before:
  Save g:ale_buffer_info

  let g:job_started_success = 0
  let g:ale_run_synchronously = 1

  unlet! b:ale_linted

  function! TestCallback(buffer, output)
    return []
  endfunction

  call ale#linter#PreventLoading('testft')
  call ale#linter#Define('testft', {
  \ 'name': 'testlinter',
  \ 'callback': 'TestCallback',
  \ 'executable': has('win32') ? 'cmd' : 'true',
  \ 'command': 'true',
  \})

After:
  Restore

  let g:ale_run_synchronously = 0

  augroup VaderTest
    autocmd!
  augroup END

  augroup! VaderTest

  unlet! g:job_started_success

  delfunction TestCallback
  call ale#linter#Reset()

Given testft (An empty file):
Execute(Run a lint cycle with an actual job to check for ALEJobStarted):
  augroup VaderTest
    autocmd!
    autocmd User ALEJobStarted let g:job_started_success = 1
  augroup END

  ALELint

  AssertEqual g:job_started_success, 1