summaryrefslogtreecommitdiff
path: root/test/command_callback/test_pycodestyle_command_callback.vader
blob: 90b07a24a1113dd767624f7e7a2d38a8974541ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Before:
  Save g:ale_python_pycodestyle_executable
  Save g:ale_python_pycodestyle_options
  Save g:ale_python_pycodestyle_use_global

  runtime ale_linters/python/pycodestyle.vim

After:
  Restore

  call ale#linter#Reset()

Execute(The pycodestyle command callback should return default string):
  AssertEqual ale#Escape('pycodestyle') . '  -',
  \ ale_linters#python#pycodestyle#GetCommand(bufnr(''))

Execute(The pycodestyle command callback should allow options):
  let g:ale_python_pycodestyle_options = '--exclude=test*.py'

  AssertEqual ale#Escape('pycodestyle') . ' --exclude=test*.py -',
  \ ale_linters#python#pycodestyle#GetCommand(bufnr(''))

Execute(The pycodestyle executable should be configurable):
  let g:ale_python_pycodestyle_executable = '~/.local/bin/pycodestyle'

  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(''))