File: test_go_generic_handler.vader

package info (click to toggle)
vim-ale 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,764 kB
  • sloc: sh: 499; python: 311; perl: 31; makefile: 4; xml: 4; javascript: 1
file content (38 lines) | stat: -rw-r--r-- 1,060 bytes parent folder | download | duplicates (3)
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
28
29
30
31
32
33
34
35
36
37
38
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'),
  \   },
  \   {
  \     'lnum': 18,
  \     'col': 0,
  \     'text': 'random error',
  \     'type': 'E',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/go1.14.go'),
  \   },
  \   {
  \     'lnum': 36,
  \     'col': 2,
  \     'text': 'another random error',
  \     'type': 'E',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/anothergo1.14.go'),
  \   },
  \ ],
  \ ale#handlers#go#Handler(bufnr(''), [
  \   'test.go:27: some error',
  \   'other.go:27:5: some error with a column',
  \   'vet: go1.14.go:18:0: random error',
  \   'vet: anothergo1.14.go:36:2: another random error',
  \ ])