summaryrefslogtreecommitdiff
path: root/test/handler/test_gometalinter_handler.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/handler/test_gometalinter_handler.vader')
-rw-r--r--test/handler/test_gometalinter_handler.vader12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/handler/test_gometalinter_handler.vader b/test/handler/test_gometalinter_handler.vader
index 603ba22d..703040e2 100644
--- a/test/handler/test_gometalinter_handler.vader
+++ b/test/handler/test_gometalinter_handler.vader
@@ -29,8 +29,10 @@ Execute (The gometalinter handler should handle names with spaces):
\ 'C:\something\file with spaces.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
\ ]), 'v:val[1:5]')
-Execute (The gometalinter handler should handle relative paths correctly):
- silent file /foo/bar/baz.go
+Execute (The gometalinter handler should handle paths correctly):
+ call ale#test#SetFilename('app/test.go')
+
+ let file = ale#path#GetAbsPath(expand('%:p:h'), 'test.go')
AssertEqual
\ [
@@ -39,15 +41,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)',
+ \ file . ':12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
+ \ file . ':37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
\ ])