This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/command_callback/test_cpplint_command_callbacks.vader

17 lines
477 B
Text

Before:
call ale#assert#SetUpLinterTest('cpp', 'cpplint')
After:
call ale#assert#TearDownLinterTest()
Execute(The executable should be configurable):
AssertLinter 'cpplint', ale#Escape('cpplint') . ' %s'
let b:ale_cpp_cpplint_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' %s'
Execute(The options should be configurable):
let b:ale_cpp_cpplint_options = '--something'
AssertLinter 'cpplint', ale#Escape('cpplint') . ' --something %s'