mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-25 02:57:20 +08:00
#3633 - Move linter tests into test/linter
This commit is contained in:
30
test/linter/test_rust_rls.vader
Normal file
30
test/linter/test_rust_rls.vader
Normal file
@@ -0,0 +1,30 @@
|
||||
Before:
|
||||
call ale#assert#SetUpLinterTest('rust', 'rls')
|
||||
|
||||
After:
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The default executable path should be correct):
|
||||
AssertLinter 'rls', ale#Escape('rls')
|
||||
|
||||
Execute(The toolchain should be configurable):
|
||||
let g:ale_rust_rls_toolchain = 'stable'
|
||||
|
||||
AssertLinter 'rls', ale#Escape('rls') . ' +' . ale#Escape('stable')
|
||||
|
||||
Execute(The toolchain should be ommitted if not given):
|
||||
let g:ale_rust_rls_toolchain = ''
|
||||
|
||||
AssertLinter 'rls', ale#Escape('rls')
|
||||
|
||||
Execute(The project root should be detected correctly):
|
||||
AssertLSPProject ''
|
||||
|
||||
call ale#test#SetFilename('../test-files/rust/test.rs')
|
||||
|
||||
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/rust')
|
||||
|
||||
Execute(Should accept configuration settings):
|
||||
AssertLSPConfig {}
|
||||
let b:ale_rust_rls_config = {'rust': {'clippy_preference': 'on'}}
|
||||
AssertLSPConfig {'rust': {'clippy_preference': 'on'}}
|
||||
Reference in New Issue
Block a user