mirror of
https://github.com/dense-analysis/ale.git
synced 2026-08-31 11:56:55 +08:00
#4454 Clean up more tests and code
* Remove some tests we no longer need * Delete blocks of redundant code * Compress some tests together to simplify them * Remove a little code for ancient linter versions * Escape more executables we didn't escape before * Rename a deno option that didn't match our conventions
This commit is contained in:
@@ -12,21 +12,17 @@ After:
|
||||
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The default command should be correct):
|
||||
AssertLinter 'go', 'go vet .'
|
||||
Execute(The default go vet command should be correct):
|
||||
AssertLinter 'go', ale#Escape('go') . ' vet .'
|
||||
AssertLinterCwd '%s:h'
|
||||
|
||||
Execute(Extra options should be supported):
|
||||
Execute(The go vet command and options should be configurable):
|
||||
let g:ale_go_go_executable = 'foobar'
|
||||
let g:ale_go_govet_options = '--foo-bar'
|
||||
|
||||
AssertLinterCwd '%s:h'
|
||||
AssertLinter 'go', 'go vet --foo-bar .'
|
||||
|
||||
Execute(The executable should be configurable):
|
||||
let g:ale_go_go_executable = 'foobar'
|
||||
|
||||
AssertLinter 'foobar', 'foobar vet .'
|
||||
AssertLinter 'foobar', ale#Escape('foobar') . ' vet --foo-bar .'
|
||||
|
||||
Execute(Go environment variables should be supported):
|
||||
let b:ale_go_go111module = 'on'
|
||||
|
||||
AssertLinter 'go', ale#Env('GO111MODULE', 'on') . 'go vet .'
|
||||
AssertLinter 'go', ale#Env('GO111MODULE', 'on') . ale#Escape('go') . ' vet .'
|
||||
|
||||
Reference in New Issue
Block a user