diff options
author | Jeff Willette <jrwillette88@gmail.com> | 2017-11-16 01:34:30 +0900 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-11-15 16:34:30 +0000 |
commit | e721f851b41b8f6f31067ae2a137019e1cb5546c (patch) | |
tree | f00d79521ad98dab729325273b3d0db7e8afc4b2 /test/handler/test_gobuild_handler.vader | |
parent | 290ed4885b2f0dbbbe9fcbfb12216f89b2e63924 (diff) | |
download | ale-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_gobuild_handler.vader')
-rw-r--r-- | test/handler/test_gobuild_handler.vader | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/handler/test_gobuild_handler.vader b/test/handler/test_gobuild_handler.vader index ce2119cd..ec77f9c4 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): - silent file! /foo/bar/baz.go + call ale#test#SetFilename('app/test.go') AssertEqual \ [ @@ -37,8 +37,9 @@ 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(''), [ - \ 'baz.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args', + \ 'test.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args', \ ]) |