summaryrefslogtreecommitdiff
path: root/test/handler/test_rubocop_handler.vader
blob: d77aa83cd796d9c1e7c96f4899f7372ce4532936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Execute(The rubocop handler should parse lines correctly):
  runtime ale_linters/ruby/rubocop.vim

  AssertEqual
  \ [
  \   {
  \     'bufnr': 347,
  \     'lnum': 83,
  \     'col': 29,
  \     'text': 'Prefer single-quoted strings...',
  \     'type': 'W',
  \   },
  \   {
  \     'bufnr': 347,
  \     'lnum': 12,
  \     'col': 2,
  \     'text': 'Some error',
  \     'type': 'E',
  \   },
  \   {
  \     'bufnr': 347,
  \     'lnum': 10,
  \     'col': 5,
  \     'text': 'Regular warning',
  \     'type': 'W',
  \   },
  \   {
  \     'bufnr': 347,
  \     'lnum': 11,
  \     'col': 1,
  \     'text': 'Another error',
  \     'type': 'E',
  \   },
  \ ],
  \ ale_linters#ruby#rubocop#Handle(347, [
  \   'This line should be ignored completely',
  \   'whatever:83:29: C: Prefer single-quoted strings...',
  \   'whatever:12:2: F: Some error',
  \   'whatever:10:5: W: Regular warning',
  \   'whatever:11:1: E: Another error',
  \ ])

After:
  call ale#linter#Reset()