summaryrefslogtreecommitdiff
path: root/test/command_callback/test_gofmt_command_callback.vader
blob: 88b2e6b09dbadc5a4b429294aad76a6efa06aac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Before:
  Save g:ale_go_go111module
  Save b:ale_go_go111module

  let b:ale_go_go111module = ''

  call ale#assert#SetUpLinterTest('go', 'gofmt')
  call ale#test#SetFilename('../go_files/testfile2.go')

After:
  Restore

  unlet! b:ale_go_go111module

  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'