summaryrefslogtreecommitdiff
path: root/test/command_callback/test_prospector_command_callback.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/command_callback/test_prospector_command_callback.vader')
-rw-r--r--test/command_callback/test_prospector_command_callback.vader23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/command_callback/test_prospector_command_callback.vader b/test/command_callback/test_prospector_command_callback.vader
new file mode 100644
index 00000000..04cd58ed
--- /dev/null
+++ b/test/command_callback/test_prospector_command_callback.vader
@@ -0,0 +1,23 @@
+Before:
+ Save g:ale_python_mypy_executable
+ Save g:ale_python_mypy_options
+
+ unlet! g:ale_python_mypy_executable
+ unlet! g:ale_python_mypy_options
+
+ runtime ale_linters/python/prospector.vim
+
+After:
+ Restore
+
+ unlet! b:executable
+
+ call ale#linter#Reset()
+
+Execute(Setting executable to 'pipenv' appends 'run prospector'):
+ let g:ale_python_prospector_executable = 'path/to/pipenv'
+
+ AssertEqual
+ \ ale#Escape('path/to/pipenv') . ' run prospector'
+ \ . ' --messages-only --absolute-paths --zero-exit --output-format json %s',
+ \ ale_linters#python#prospector#GetCommand(bufnr(''))