diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-03 23:43:31 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-03 23:43:31 +0100 |
commit | c7bd5cc0ba799abb7e382751cdbea49c1b98a429 (patch) | |
tree | 39fbb108bc228eb9f6aa2dc5f8c880db00f63190 | |
parent | f3fa8db4cf57cf0250b4cc13aab03708068905a5 (diff) | |
download | ale-c7bd5cc0ba799abb7e382751cdbea49c1b98a429.zip |
Cover handling of swiftlint errors with tests
-rw-r--r-- | test/handler/test_swiftlint_handler.vader | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/handler/test_swiftlint_handler.vader b/test/handler/test_swiftlint_handler.vader new file mode 100644 index 00000000..42fc8242 --- /dev/null +++ b/test/handler/test_swiftlint_handler.vader @@ -0,0 +1,28 @@ +Execute(The swiftint handler should parse error messages correctly): + AssertEqual + \ [ + \ { + \ 'bufnr': 347, + \ '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)', + \ 'type': 'W', + \ 'vcol': 0, + \ 'nr': -1, + \ }, + \ { + \ 'bufnr': 347, + \ '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)', + \ 'type': 'W', + \ 'vcol': 0, + \ 'nr': -1, + \ }, + \ + \ ], + \ ale#handlers#HandleGCCFormat(347, [ + \ '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)', + \ ]) |