diff options
author | Stephen Rathbone <stephen@stephenrathbone.co.uk> | 2017-12-13 21:23:18 +0000 |
---|---|---|
committer | Stephen Rathbone <stephen@stephenrathbone.co.uk> | 2017-12-13 21:23:18 +0000 |
commit | 78d1f5f5dfdc3a362b3ecb304ffb07e9bb10a65c (patch) | |
tree | 9ddb9d93f71d157e48765ce34a8ecdc1e5479d02 /test | |
parent | d2a6d9a9152476ed89fcb10291c95d4fc3716423 (diff) | |
download | ale-78d1f5f5dfdc3a362b3ecb304ffb07e9bb10a65c.zip |
Fix PHP linter to support PHP 7.2 lint output
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_php_handler.vader | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/handler/test_php_handler.vader b/test/handler/test_php_handler.vader index a6a4ba04..6fe9b323 100644 --- a/test/handler/test_php_handler.vader +++ b/test/handler/test_php_handler.vader @@ -54,6 +54,18 @@ Execute (The php handler should ignore lines starting with 'PHP Parse error'): \ "PHP Parse error: syntax error, This line should be ignored completely in - on line 1", \ ]) +Execute (The php handler should handle lines containing 'Standard input code'): + AssertEqual + \ [ + \ { + \ 'lnum': 47, + \ 'col': 0, + \ 'text': "Invalid numeric literal", + \ }, + \ ], + \ ale_linters#php#php#Handle(347, [ + \ "Parse error: Invalid numeric literal in Standard input code on line 47", + \ ]) Execute (The php handler should parse lines without column indication): AssertEqual \ [ |