summaryrefslogtreecommitdiff
path: root/test/handler/test_swiftlint_handler.vader
blob: b77b442013d2a639d1e2a6de57f24c750021f09a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)',
  \     '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)',
  \     'type': 'W',
  \   },
  \
  \ ],
  \ ale#handlers#gcc#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)',
  \ ])