Massively reduce the amount of code needed for linter tests

This commit is contained in:
w0rp
2018-07-15 18:24:53 +01:00
parent 5155a35a80
commit a42999a639
138 changed files with 1447 additions and 3017 deletions

View File

@@ -1,23 +1,12 @@
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
call ale#assert#SetUpLinterTest('python', 'prospector')
After:
Restore
unlet! b:executable
call ale#linter#Reset()
call ale#assert#TearDownLinterTest()
Execute(Setting executable to 'pipenv' appends 'run prospector'):
let g:ale_python_prospector_executable = 'path/to/pipenv'
AssertEqual
AssertLinter 'path/to/pipenv',
\ ale#Escape('path/to/pipenv') . ' run prospector'
\ . ' --messages-only --absolute-paths --zero-exit --output-format json %s',
\ ale_linters#python#prospector#GetCommand(bufnr(''))
\ . ' --messages-only --absolute-paths --zero-exit --output-format json %s'