summaryrefslogtreecommitdiff
path: root/test/handler/test_flake8_handler.vader
blob: 15345d89f34a822c1b51f17fa9daffc82168b275 (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
45
46
47

Execute(End column indexes should be set for certain errors):
  AssertEqual
  \ [
  \   {
  \     'lnum': 25,
  \     'col': 1,
  \     'type': 'W',
  \     'end_col': 3,
  \     'text': 'F821: undefined name ''foo''',
  \   },
  \   {
  \     'lnum': 28,
  \     'col': 5,
  \     'type': 'W',
  \     'end_col': 9,
  \     'text': 'F405: hello may be undefined, or defined from star imports: x',
  \   },
  \   {
  \     'lnum': 104,
  \     'col': 5,
  \     'type': 'W',
  \     'end_col': 12,
  \     'text': 'F999: ''continue'' not properly in loop',
  \   },
  \   {
  \     'lnum': 106,
  \     'col': 5,
  \     'type': 'W',
  \     'end_col': 9,
  \     'text': 'F999: ''break'' outside loop',
  \   },
  \   {
  \     'lnum': 109,
  \     'col': 5,
  \     'type': 'W',
  \     'end_col': 8,
  \     'text': 'F841: local variable ''test'' is assigned to but never used',
  \   },
  \ ],
  \ ale#handlers#python#HandlePEP8Format(1, [
  \ 'foo.py:25:1: F821 undefined name ''foo''',
  \ 'foo.py:28:5: F405 hello may be undefined, or defined from star imports: x',
  \ 'foo.py:104:5: F999 ''continue'' not properly in loop',
  \ 'foo.py:106:5: F999 ''break'' outside loop',
  \ 'foo.py:109:5: F841 local variable ''test'' is assigned to but never used',
  \ ])