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

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