summaryrefslogtreecommitdiff
path: root/test/command_callback/test_prospector_command_callback.vader
blob: 04cd58ed25274337241eb78cc92e6fa906b0294f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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(''))