This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/test_nix_handler.vader
2017-03-05 20:36:29 +00:00

26 lines
721 B
Text

Execute(The nix handler should parse nix-instantiate error messages correctly):
runtime ale_linters/nix/nix.vim
AssertEqual
\ [
\ {
\ 'bufnr': 47,
\ 'lnum': 23,
\ 'col': 14,
\ 'text': 'error: syntax error, unexpected IN',
\ 'type': 'E',
\ },
\ {
\ 'bufnr': 47,
\ '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',
\ ])