mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 05:04:28 +08:00
* Fix perl test case clean-up * Add support for perl language server Co-authored-by: cos <cos>
17 lines
505 B
Plaintext
17 lines
505 B
Plaintext
Before:
|
|
call ale#assert#SetUpLinterTest('perl', 'perl')
|
|
|
|
After:
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(The default Perl command callback should be correct):
|
|
AssertLinter 'perl', ale#Escape('perl') . ' -c -Mwarnings -Ilib %t'
|
|
|
|
Execute(Overriding the executable and command should work):
|
|
let b:ale_perl_perl_executable = 'foobar'
|
|
let b:ale_perl_perl_options = '-w'
|
|
|
|
AssertLinter 'foobar', ale#Escape('foobar') . ' -w %t'
|
|
unlet b:ale_perl_perl_executable
|
|
unlet b:ale_perl_perl_options
|