Use govet handler for gosimple, gotype, staticcheck

This commit is contained in:
Ben Paxton
2018-03-20 14:19:48 +00:00
parent 0cb3e36554
commit 6452c5e2f0
6 changed files with 31 additions and 29 deletions

View File

@@ -0,0 +1,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',
\ ])