mirror of
https://github.com/dense-analysis/ale.git
synced 2026-08-12 10:52:32 +08:00
Fix a test on Windows
This commit is contained in:
@@ -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 New Issue
Block a user