summaryrefslogtreecommitdiff
path: root/test/handler/test_gometalinter_handler.vader
diff options
context:
space:
mode:
authorJeff Willette <jrwillette88@gmail.com>2017-11-16 01:34:30 +0900
committerw0rp <w0rp@users.noreply.github.com>2017-11-15 16:34:30 +0000
commite721f851b41b8f6f31067ae2a137019e1cb5546c (patch)
treef00d79521ad98dab729325273b3d0db7e8afc4b2 /test/handler/test_gometalinter_handler.vader
parent290ed4885b2f0dbbbe9fcbfb12216f89b2e63924 (diff)
downloadale-e721f851b41b8f6f31067ae2a137019e1cb5546c.zip
Show problems from other files for gobuild and gometalinter
* Added filename keys to gobuild and gometalinter * Removed skipping files not in current package * Removed `--include` for gometalinter * Fixed the tests
Diffstat (limited to 'test/handler/test_gometalinter_handler.vader')
-rw-r--r--test/handler/test_gometalinter_handler.vader8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/handler/test_gometalinter_handler.vader b/test/handler/test_gometalinter_handler.vader
index 603ba22d..127d093e 100644
--- a/test/handler/test_gometalinter_handler.vader
+++ b/test/handler/test_gometalinter_handler.vader
@@ -30,7 +30,7 @@ Execute (The gometalinter handler should handle names with spaces):
\ ]), 'v:val[1:5]')
Execute (The gometalinter handler should handle relative paths correctly):
- silent file /foo/bar/baz.go
+ call ale#test#SetFilename('app/test.go')
AssertEqual
\ [
@@ -39,15 +39,17 @@ Execute (The gometalinter handler should handle relative paths correctly):
\ 'col': 3,
\ 'text': 'expected ''package'', found ''IDENT'' gibberish (staticcheck)',
\ 'type': 'W',
+ \ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
\ },
\ {
\ 'lnum': 37,
\ 'col': 5,
\ 'text': 'expected ''package'', found ''IDENT'' gibberish (golint)',
\ 'type': 'E',
+ \ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
\ },
\ ],
\ ale_linters#go#gometalinter#Handler(bufnr(''), [
- \ 'baz.go:12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
- \ 'baz.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
+ \ 'test.go:12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
+ \ 'test.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
\ ])