summaryrefslogtreecommitdiff
path: root/test/handler/test_nix_handler.vader
blob: 1555e59d06ccfe4bb2d3fd98698eb6f7ccfd317b (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
Execute(The nix handler should parse nix-instantiate error messages correctly):
  runtime ale_linters/nix/nix.vim

  AssertEqual
  \ [
  \   {
  \     'lnum': 23,
  \     'col': 14,
  \     'text': 'error: syntax error, unexpected IN',
  \     'type': 'E',
  \   },
  \   {
  \     'lnum': 3,
  \     'col': 12,
  \     'text': 'error: syntax error, unexpected ''='', expecting '';''',
  \     'type': 'E',
  \   },
  \
  \ ],
  \ ale_linters#nix#nix#Handle(47, [
  \   'This line should be ignored',
  \   'error: syntax error, unexpected IN, at /path/to/filename.nix:23:14',
  \   'error: syntax error, unexpected ''='', expecting '';'', at /path/to/filename.nix:3:12',
  \ ])

After:
  call ale#linter#Reset()