summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_php_psalm_handler.vader24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/handler/test_php_psalm_handler.vader b/test/handler/test_php_psalm_handler.vader
deleted file mode 100644
index fd62a467..00000000
--- a/test/handler/test_php_psalm_handler.vader
+++ /dev/null
@@ -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",
- \ ])