test_checkmake_handler.vader
1 Before: 2 runtime ale_linters/make/checkmake.vim 3 4 After: 5 call ale#linter#Reset() 6 7 Execute(Parsing checkmake errors should work): 8 AssertEqual 9 \ [ 10 \ { 11 \ 'bufnr': 42, 12 \ 'lnum': 1, 13 \ 'type': 'E', 14 \ 'code': 'woops', 15 \ 'text': 'an error has occurred', 16 \ } 17 \ ], 18 \ ale_linters#make#checkmake#Handle(42, [ 19 \ "This shouldn't match", 20 \ '1:woops:an error has occurred', 21 \ ])