1
0
Fork 0
mirror of synced 2024-07-01 21:11:09 -04:00
ultimate-vim/sources_non_forked/ale/test/linter/test_zeek.vader

18 lines
513 B
Plaintext
Raw Normal View History

2022-05-19 09:16:38 -04:00
Before:
call ale#assert#SetUpLinterTest('zeek', 'zeek')
let b:command_tail = ' --parse-only %s'
After:
call ale#assert#TearDownLinterTest()
unlet! b:command_tail
Execute(The default command should be correct):
AssertLinter 'zeek', ale#Escape('zeek') . b:command_tail
Execute(The zeek executable should be configurable, and escaped properly):
let g:ale_zeek_zeek_executable = 'executable with spaces'
AssertLinter 'executable with spaces', ale#Escape('executable with spaces') . b:command_tail