34 lines
603 B
Plaintext
34 lines
603 B
Plaintext
|
Before:
|
||
|
let g:output = []
|
||
|
|
||
|
function! TestCallback(buffer, output)
|
||
|
let g:output = a:output
|
||
|
|
||
|
return []
|
||
|
endfunction
|
||
|
|
||
|
call ale#linter#Define('foobar', {
|
||
|
\ 'name': 'testlinter',
|
||
|
\ 'callback': 'TestCallback',
|
||
|
\ 'executable': 'cat',
|
||
|
\ 'command': 'cat %t',
|
||
|
\})
|
||
|
|
||
|
After:
|
||
|
unlet! g:output
|
||
|
delfunction TestCallback
|
||
|
call ale#linter#Reset()
|
||
|
|
||
|
Given foobar (Some imaginary filetype):
|
||
|
foo
|
||
|
bar
|
||
|
baz
|
||
|
|
||
|
Execute(ALE should be able to read the %t file):
|
||
|
AssertEqual 'foobar', &filetype
|
||
|
|
||
|
call ale#Lint()
|
||
|
call ale#engine#WaitForJobs(2000)
|
||
|
|
||
|
AssertEqual ['foo', 'bar', 'baz'], g:output
|