summaryrefslogtreecommitdiff
path: root/test/command_callback/test_gotype_command_callback.vader
blob: 1334fcff2c5e49864984afc4229935c86cdef361 (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
27
Before:
  Save g:ale_go_go111module

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

After:
  unlet! b:ale_go_go111module

  call ale#assert#TearDownLinterTest()

Execute(The default gotype command should be correct):
  AssertLinter 'gotype',
  \ ale#path#CdString(expand('%:p:h')) . ' gotype -e .'

Execute(The gotype callback should ignore test files):
  call ale#test#SetFilename('bla_test.go')

  AssertLinter 'gotype', ''

Execute(The gotype callback should support Go environment variables):
  let b:ale_go_go111module = 'on'

  AssertLinter 'gotype',
  \ ale#path#CdString(expand('%:p:h')) . ' '
  \ . ale#Env('GO111MODULE', 'on')
  \ . 'gotype -e .'