blob: 8223b09933beccef2ded3d2c16dcee91cbc781c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Before:
call ale#assert#SetUpLinterTest('go', 'gofmt')
call ale#test#SetFilename('../go_files/testfile2.go')
After:
call ale#assert#TearDownLinterTest()
Execute(The default gofmt command should be correct):
AssertLinter 'gofmt',
\ ale#Escape('gofmt') . ' -e %t'
Execute(The gofmt command should support Go environment variables):
let b:ale_go_go111module = 'on'
AssertLinter 'gofmt',
\ ale#Env('GO111MODULE', 'on')
\ . ale#Escape('gofmt') . ' -e %t'
unlet! b:ale_go_go111module
|