summaryrefslogtreecommitdiff
path: root/test/command_callback/test_pycodestyle_command_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-15 18:24:53 +0100
committerw0rp <devw0rp@gmail.com>2018-07-15 18:28:28 +0100
commita42999a639b2916b769a85f37d037be314d9d61b (patch)
tree5ebfb4d357dc673efa93fd32a66b489c4510de40 /test/command_callback/test_pycodestyle_command_callback.vader
parent5155a35a80fe3b20659eb0f28cc6cc720532dd3f (diff)
downloadale-a42999a639b2916b769a85f37d037be314d9d61b.zip
Massively reduce the amount of code needed for linter tests
Diffstat (limited to 'test/command_callback/test_pycodestyle_command_callback.vader')
-rw-r--r--test/command_callback/test_pycodestyle_command_callback.vader26
1 files changed, 9 insertions, 17 deletions
diff --git a/test/command_callback/test_pycodestyle_command_callback.vader b/test/command_callback/test_pycodestyle_command_callback.vader
index 90b07a24..851eede9 100644
--- a/test/command_callback/test_pycodestyle_command_callback.vader
+++ b/test/command_callback/test_pycodestyle_command_callback.vader
@@ -1,34 +1,26 @@
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
+ call ale#assert#SetUpLinterTest('python', 'pycodestyle')
After:
- Restore
-
- call ale#linter#Reset()
+ call ale#assert#TearDownLinterTest()
Execute(The pycodestyle command callback should return default string):
- AssertEqual ale#Escape('pycodestyle') . ' -',
- \ ale_linters#python#pycodestyle#GetCommand(bufnr(''))
+ AssertLinter 'pycodestyle', ale#Escape('pycodestyle') . ' -'
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(''))
+ AssertLinter 'pycodestyle',
+ \ ale#Escape('pycodestyle') . ' --exclude=test*.py -'
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(''))
+ AssertLinter '~/.local/bin/pycodestyle',
+ \ ale#Escape('~/.local/bin/pycodestyle') . ' -'
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(''))
+ AssertLinter 'path/to/pipenv',
+ \ ale#Escape('path/to/pipenv') . ' run pycodestyle -'