2018-02-25 11:39:45 +00:00
|
|
|
Before:
|
2018-09-19 18:33:23 +00:00
|
|
|
Save g:ale_go_go_executable
|
|
|
|
Save g:ale_go_govet_options
|
2019-08-02 08:09:10 +00:00
|
|
|
Save g:ale_go_go111module
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#SetUpLinterTest('go', 'govet')
|
2018-02-25 11:39:45 +00:00
|
|
|
|
|
|
|
After:
|
2018-09-19 18:33:23 +00:00
|
|
|
Restore
|
2019-08-02 08:09:10 +00:00
|
|
|
|
|
|
|
unlet! b:ale_go_go111module
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2018-02-25 11:39:45 +00:00
|
|
|
|
|
|
|
Execute(The default command should be correct):
|
2020-08-28 16:46:43 +00:00
|
|
|
AssertLinter 'go', ale#path#BufferCdString(bufnr('')) . ' go vet .'
|
2018-08-16 02:02:51 +00:00
|
|
|
|
|
|
|
Execute(Extra options should be supported):
|
|
|
|
let g:ale_go_govet_options = '--foo-bar'
|
2019-08-02 08:09:10 +00:00
|
|
|
|
2020-08-28 16:46:43 +00:00
|
|
|
AssertLinter 'go', ale#path#BufferCdString(bufnr('')) . ' go vet --foo-bar .'
|
2018-09-19 18:33:23 +00:00
|
|
|
|
|
|
|
Execute(The executable should be configurable):
|
|
|
|
let g:ale_go_go_executable = 'foobar'
|
2019-08-02 08:09:10 +00:00
|
|
|
|
2020-08-28 16:46:43 +00:00
|
|
|
AssertLinter 'foobar', ale#path#BufferCdString(bufnr('')) . ' foobar vet .'
|
2019-04-11 02:25:06 +00:00
|
|
|
|
|
|
|
Execute(Go environment variables should be supported):
|
|
|
|
let b:ale_go_go111module = 'on'
|
2019-08-02 08:09:10 +00:00
|
|
|
|
2019-04-11 02:25:06 +00:00
|
|
|
AssertLinter 'go',
|
2020-08-28 16:46:43 +00:00
|
|
|
\ ale#path#BufferCdString(bufnr('')) . ' '
|
2019-04-11 02:25:06 +00:00
|
|
|
\ . ale#Env('GO111MODULE', 'on')
|
|
|
|
\ . 'go vet .'
|