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_d_dls_callbacks.vader
Auri be21aa5cda New linter: dls (#1992)
* New linter: dls
2018-10-17 16:11:41 +01:00

19 lines
418 B
Text

Before:
call ale#assert#SetUpLinterTest('d', 'dls')
Save &filetype
let &filetype = 'd'
After:
call ale#assert#TearDownLinterTest()
Execute(The language string should be correct):
AssertLSPLanguage 'd'
Execute(The default executable should be correct):
AssertLinter 'dls', 'dls'
Execute(The executable should be configurable):
let g:ale_d_dls_executable = 'foobar'
AssertLinter 'foobar', 'foobar'