summaryrefslogtreecommitdiff
path: root/test/handler/test_go_generic_handler.vader
blob: 624e56c1883c792f3e1916b624226d5b6d69bfcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Execute(The golang handler should return the correct filenames):
  AssertEqual
  \ [
  \   {
  \     'lnum': 27,
  \     'col': 0,
  \     'text': 'some error',
  \     'type': 'E',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
  \   },
  \   {
  \     'lnum': 27,
  \     'col': 5,
  \     'text': 'some error with a column',
  \     'type': 'E',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/other.go'),
  \   },
  \ ],
  \ ale#handlers#go#Handler(bufnr(''), [
  \   'test.go:27: some error',
  \   'other.go:27:5: some error with a column',
  \ ])