summaryrefslogtreecommitdiff
path: root/test/handler/test_nix_handler.vader
blob: 398e1ac87440e5f15a68ec6091104559cb69eab7 (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
Before:
  runtime ale_linters/nix/nix.vim

After:
  call ale#linter#Reset()

Execute(The nix handler should parse nix-instantiate error messages correctly):
  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',
  \ ])