summaryrefslogtreecommitdiff
path: root/test/command_callback/test_pycodestyle_command_callback.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/command_callback/test_pycodestyle_command_callback.vader')
-rw-r--r--test/command_callback/test_pycodestyle_command_callback.vader7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/command_callback/test_pycodestyle_command_callback.vader b/test/command_callback/test_pycodestyle_command_callback.vader
index 5b309e19..90b07a24 100644
--- a/test/command_callback/test_pycodestyle_command_callback.vader
+++ b/test/command_callback/test_pycodestyle_command_callback.vader
@@ -25,3 +25,10 @@ Execute(The pycodestyle executable should be configurable):
AssertEqual ale#Escape('~/.local/bin/pycodestyle') . ' -',
\ ale_linters#python#pycodestyle#GetCommand(bufnr(''))
+
+Execute(Setting executable to 'pipenv' appends 'run pycodestyle'):
+ let g:ale_python_pycodestyle_executable = 'path/to/pipenv'
+
+ AssertEqual
+ \ ale#Escape('path/to/pipenv') . ' run pycodestyle -',
+ \ ale_linters#python#pycodestyle#GetCommand(bufnr(''))