Fix a test on Windows
This commit is contained in:
parent
3b96ab43fb
commit
4f3190daa8
1 changed files with 5 additions and 1 deletions
|
@ -64,7 +64,11 @@ Execute(cmd /s/c as a string should be used on Windows):
|
||||||
Execute(Setting ale_shell should cause ale#job#PrepareCommand to use set shell):
|
Execute(Setting ale_shell should cause ale#job#PrepareCommand to use set shell):
|
||||||
let g:ale_shell = '/foo/bar'
|
let g:ale_shell = '/foo/bar'
|
||||||
|
|
||||||
AssertEqual ['/foo/bar', '-c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar")
|
if has('win32')
|
||||||
|
AssertEqual ['/foo/bar', '/c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar")
|
||||||
|
else
|
||||||
|
AssertEqual ['/foo/bar', '-c', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar")
|
||||||
|
endif
|
||||||
|
|
||||||
let g:ale_shell_arguments = '-x'
|
let g:ale_shell_arguments = '-x'
|
||||||
|
|
||||||
|
|
Reference in a new issue