diff options
author | Diego Oliveira <contato@diegoholiveira.com> | 2017-10-22 14:56:09 -0200 |
---|---|---|
committer | Diego Oliveira <contato@diegoholiveira.com> | 2017-10-22 14:56:09 -0200 |
commit | 5b986ce5d36e5a49a4c74e68c157cb8244fd7404 (patch) | |
tree | 40765ab4f8d5360770108fe4416986b2331867e3 /test/handler | |
parent | 47577564a2294668d7997b261e17fd97f0dd1fe6 (diff) | |
download | ale-5b986ce5d36e5a49a4c74e68c157cb8244fd7404.zip |
Fix the regex of phpmd
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_php_phpmd_handler.vader | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/handler/test_php_phpmd_handler.vader b/test/handler/test_php_phpmd_handler.vader new file mode 100644 index 00000000..be36f3db --- /dev/null +++ b/test/handler/test_php_phpmd_handler.vader @@ -0,0 +1,24 @@ +Before: + runtime ale_linters/php/phpmd.vim + +Execute(The php static analyzer handler should parse errors from phpmd): + AssertEqual + \ [ + \ { + \ 'lnum': 22, + \ 'type': 'W', + \ 'text': "Avoid unused local variables such as '$response'.", + \ }, + \ { + \ 'lnum': 14, + \ 'type': 'W', + \ 'text': "The method test uses an else expression. Else is never necessary and you can simplify the code to work without else.", + \ }, + \ ], + \ ale_linters#php#phpmd#Handle(347, [ + \ "example.php:22 Avoid unused local variables such as '$response'.", + \ "example.php:14 The method test uses an else expression. Else is never necessary and you can simplify the code to work without else.", + \ ]) + +After: + call ale#linter#Reset() |