summaryrefslogtreecommitdiff
path: root/test/test_prepare_command.vader
diff options
context:
space:
mode:
authorJames Cherti <60946298+jamescherti@users.noreply.github.com>2022-04-06 01:32:11 -0400
committerGitHub <noreply@github.com>2022-04-06 14:32:11 +0900
commit6c1f616c596e5ffaef8e01daf17f2b583f42fd2d (patch)
treea3a3e4c22be514cf12818cfad31fe02b5048f2d9 /test/test_prepare_command.vader
parentc984daa0eca7b67ddfd445dfa27fbe4015690477 (diff)
downloadale-6c1f616c596e5ffaef8e01daf17f2b583f42fd2d.zip
Add the buffer-local options 'b:ale_shell' and 'b:ale_shell_arguments'. (#4146)
Diffstat (limited to 'test/test_prepare_command.vader')
-rw-r--r--test/test_prepare_command.vader23
1 files changed, 22 insertions, 1 deletions
diff --git a/test/test_prepare_command.vader b/test/test_prepare_command.vader
index 6a71eaed..4e963b82 100644
--- a/test/test_prepare_command.vader
+++ b/test/test_prepare_command.vader
@@ -4,6 +4,12 @@ Before:
Save g:ale_shell
Save g:ale_shell_arguments
+ Save b:ale_shell
+ Save b:ale_shell_arguments
+
+ unlet! b:ale_shell
+ unlet! b:ale_shell_arguments
+
unlet! g:ale_shell
unlet! g:ale_shell_arguments
@@ -61,7 +67,7 @@ Execute(cmd /s/c as a string should be used on Windows):
AssertEqual 'cmd /s/c "foobar"', ale#job#PrepareCommand(bufnr(''), 'foobar')
endif
-Execute(Setting ale_shell should cause ale#job#PrepareCommand to use set shell):
+Execute(Setting g:ale_shell should cause ale#job#PrepareCommand to use set shell):
let g:ale_shell = '/foo/bar'
if has('win32')
@@ -73,3 +79,18 @@ Execute(Setting ale_shell should cause ale#job#PrepareCommand to use set shell):
let g:ale_shell_arguments = '-x'
AssertEqual ['/foo/bar', '-x', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar")
+
+Execute(Setting b:ale_shell should cause ale#job#PrepareCommand to use set shell):
+ let g:ale_shell = '/wrong/foo/bar'
+ let b:ale_shell = '/foo/bar'
+
+ 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 = '--verbose -x'
+ let b:ale_shell_arguments = '-x'
+
+ AssertEqual ['/foo/bar', '-x', 'foobar'], ale#job#PrepareCommand(bufnr(''), "foobar")