summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-19 13:33:20 +0000
committerw0rp <devw0rp@gmail.com>2017-11-19 13:33:20 +0000
commitfa7f0e2b85a252598023450336bbf4f3b320c1ef (patch)
treef488ce9e520c3d141d89c53632b861fd2f52caa4 /test/handler
parentb16c82f2f19aa7b1f1472e6d3cd2908708b56a00 (diff)
downloadale-fa7f0e2b85a252598023450336bbf4f3b320c1ef.zip
#852 - Capture error codes for swiftlint
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_swiftlint_handler.vader14
1 files changed, 11 insertions, 3 deletions
diff --git a/test/handler/test_swiftlint_handler.vader b/test/handler/test_swiftlint_handler.vader
index b77b4420..725ff97c 100644
--- a/test/handler/test_swiftlint_handler.vader
+++ b/test/handler/test_swiftlint_handler.vader
@@ -1,21 +1,29 @@
+Before:
+ runtime ale_linters/swift/swiftlint.vim
+
+After:
+ call ale#linter#Reset()
+
Execute(The swiftint handler should parse error messages correctly):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'col': 7,
- \ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',
+ \ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used.',
+ \ 'code': 'operator_usage_whitespace',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 1,
\ 'col': 11,
- \ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',
+ \ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used.',
+ \ 'code': 'operator_usage_whitespace',
\ 'type': 'W',
\ },
\
\ ],
- \ ale#handlers#gcc#HandleGCCFormat(347, [
+ \ ale_linters#swift#swiftlint#Handle(bufnr(''), [
\ 'This line should be ignored',
\ '<nopath>:1:7: warning: Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',
\ '<nopath>:1:11: warning: Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',