diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-03-20 20:17:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-20 20:17:43 +0000 |
commit | 57a93cbc04de402686494d47bd4147c827383086 (patch) | |
tree | 31363ece819ed2530900cc5466253eb1660ed6d9 /test/handler/test_go_generic_handler.vader | |
parent | 43e8f47e6e8c4fd3cc7ea161120c320b85813efd (diff) | |
parent | 6452c5e2f0aded3044a4263189f5b46c37409981 (diff) | |
download | ale-57a93cbc04de402686494d47bd4147c827383086.zip |
Merge pull request #1433 from benpaxton-hf/lint-whole-package
Lint whole package for gosimple and gotype
Diffstat (limited to 'test/handler/test_go_generic_handler.vader')
-rw-r--r-- | test/handler/test_go_generic_handler.vader | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/handler/test_go_generic_handler.vader b/test/handler/test_go_generic_handler.vader new file mode 100644 index 00000000..624e56c1 --- /dev/null +++ b/test/handler/test_go_generic_handler.vader @@ -0,0 +1,22 @@ +Execute(The golang handler should return the correct filenames): + AssertEqual + \ [ + \ { + \ 'lnum': 27, + \ 'col': 0, + \ 'text': 'some error', + \ 'type': 'E', + \ 'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'), + \ }, + \ { + \ 'lnum': 27, + \ 'col': 5, + \ 'text': 'some error with a column', + \ 'type': 'E', + \ 'filename': ale#path#Simplify(expand('%:p:h') . '/other.go'), + \ }, + \ ], + \ ale#handlers#go#Handler(bufnr(''), [ + \ 'test.go:27: some error', + \ 'other.go:27:5: some error with a column', + \ ]) |