Add tests for updated Psalm plugin

This commit is contained in:
Matt Brown
2018-10-19 16:31:12 -04:00
parent 0ed07a9ef5
commit 7fa0d3dcc4
3 changed files with 21 additions and 28 deletions

View File

@@ -1,24 +0,0 @@
Before:
runtime ale_linters/php/psalm.vim
After:
call ale#linter#Reset()
Execute(The php static analyzer handler should parse errors from psalm):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'type': 'W',
\ 'text': 'somewarning',
\ },
\ {
\ 'lnum': 11,
\ 'type': 'E',
\ 'text': 'someerror',
\ },
\ ],
\ ale_linters#php#psalm#Handle(347, [
\ "/file:1:3:warning - somewarning",
\ "/file:11:33:error - someerror",
\ ])