2018-06-06 16:03:15 +00:00
|
|
|
" Author: Ben Falconer <ben@falconers.me.uk>
|
|
|
|
" Description: A language server for C++
|
|
|
|
|
|
|
|
Before:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#SetUpLinterTest('cpp', 'cquery')
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
After:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
Execute(The executable should be configurable):
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'cquery', ale#Escape('cquery')
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
let b:ale_cpp_cquery_executable = 'foobar'
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'foobar', ale#Escape('foobar')
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
Execute(The cache directory should be configurable):
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLSPOptions {'cacheDirectory': expand('$HOME/.cache/cquery')}
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
let b:ale_cpp_cquery_cache_directory = '/foo/bar'
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLSPOptions {'cacheDirectory': '/foo/bar'}
|