mirror of https://github.com/dense-analysis/ale
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
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',
|
|
\ ])
|