diff options
author | eyenseo <eyenseo@gmail.com> | 2018-04-12 20:42:38 +0200 |
---|---|---|
committer | eyenseo <eyenseo@gmail.com> | 2018-04-12 20:42:38 +0200 |
commit | 6c93cded648f835a23ca5b5a1ed4bfefb81c7fd2 (patch) | |
tree | 3b002e1bf68971c8e84d84f6d66993a8a269fc62 /test | |
parent | f064ba48f5893f25c1af9459b309a919a392db7c (diff) | |
download | ale-6c93cded648f835a23ca5b5a1ed4bfefb81c7fd2.zip |
Fix rust rls linter toolchain argument
This removes the argument if the specified toolchain is empty.
As far as I can tell there is no +nighly (or similar) option [1] leading to
the termination of the server. But since people needed this option and
have yet to complain about it it stays the default for now.
[1] https://github.com/rust-lang-nursery/rls/blob/master/src/main.rs#L87
Diffstat (limited to 'test')
-rw-r--r-- | test/command_callback/test_rust_rls_callbacks.vader | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/command_callback/test_rust_rls_callbacks.vader b/test/command_callback/test_rust_rls_callbacks.vader index 693d6e9f..d537bccb 100644 --- a/test/command_callback/test_rust_rls_callbacks.vader +++ b/test/command_callback/test_rust_rls_callbacks.vader @@ -28,6 +28,13 @@ Execute(The toolchain should be configurable): \ ale#Escape('rls') . ' +' . ale#Escape('stable'), \ ale_linters#rust#rls#GetCommand(bufnr('')) +Execute(The toolchain should be ommitted if not given): + let g:ale_rust_rls_toolchain = '' + + AssertEqual + \ ale#Escape('rls'), + \ ale_linters#rust#rls#GetCommand(bufnr('')) + Execute(The language string should be correct): AssertEqual 'rust', ale_linters#rust#rls#GetLanguage(bufnr('')) |