diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-11-20 20:58:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-20 20:58:43 +0000 |
commit | 5a3a6955863fde86ef318a1fc6c3ad5d23429c0a (patch) | |
tree | 7a9a4f6c7ad618041ca2a171eaa22db1aa201e0c /test | |
parent | c9e203e6204314b55aed76c49f57aaf8ab826c90 (diff) | |
parent | b9f02ffb275b1d120967ab163e79959d3673ffd6 (diff) | |
download | ale-5a3a6955863fde86ef318a1fc6c3ad5d23429c0a.zip |
Merge pull request #1154 from deltaskelta/add-filename-key-for-gobuild
Added filename key for `go build` linter
Diffstat (limited to 'test')
-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', \ ]) |