Fix a test on Windows

This commit is contained in:
w0rp 2019-01-04 14:51:55 +00:00
parent 3b96ab43fb
commit 4f3190daa8
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83
1 changed files with 5 additions and 1 deletions

View File

@ -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):
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'