summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-20 10:43:45 +0000
committerw0rp <devw0rp@gmail.com>2017-11-20 10:43:45 +0000
commitf224ce8a377bbb3a0deb78b98fdc6c43555791e2 (patch)
treeaa5c36e414807d681721a5b3fa1d8588e96f2726 /test/handler
parent9420c411bda14348a435a76bb415a3081940b285 (diff)
downloadale-f224ce8a377bbb3a0deb78b98fdc6c43555791e2.zip
Revert "Show problems from other files for gobuild and gometalinter"
This reverts commit e721f851b41b8f6f31067ae2a137019e1cb5546c.
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_gobuild_handler.vader5
-rw-r--r--test/handler/test_gometalinter_handler.vader8
2 files changed, 5 insertions, 8 deletions
diff --git a/test/handler/test_gobuild_handler.vader b/test/handler/test_gobuild_handler.vader
index ec77f9c4..ce2119cd 100644
--- a/test/handler/test_gobuild_handler.vader
+++ b/test/handler/test_gobuild_handler.vader
@@ -28,7 +28,7 @@ Execute (The gobuild handler should handle names with spaces):
\ ]), 'v:val[1:4]')
Execute (The gobuild handler should handle relative paths correctly):
- call ale#test#SetFilename('app/test.go')
+ silent file! /foo/bar/baz.go
AssertEqual
\ [
@@ -37,9 +37,8 @@ Execute (The gobuild handler should handle relative paths correctly):
\ 'col': 0,
\ 'text': 'missing argument for Printf("%s"): format reads arg 2, have only 1 args',
\ 'type': 'E',
- \ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
\ },
\ ],
\ ale_linters#go#gobuild#Handler(bufnr(''), [
- \ 'test.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args',
+ \ 'baz.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args',
\ ])
diff --git a/test/handler/test_gometalinter_handler.vader b/test/handler/test_gometalinter_handler.vader
index 127d093e..603ba22d 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):
- call ale#test#SetFilename('app/test.go')
+ silent file /foo/bar/baz.go
AssertEqual
\ [
@@ -39,17 +39,15 @@ 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(''), [
- \ 'test.go:12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
- \ 'test.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
+ \ 'baz.go:12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
+ \ 'baz.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
\ ])