summaryrefslogtreecommitdiff
path: root/test/handler/test_perlcritic_handler.vader
diff options
context:
space:
mode:
authorEddie Lebow <elebow@users.github.com>2017-11-11 15:15:19 -0500
committerEddie Lebow <elebow@users.github.com>2017-11-11 17:46:21 -0500
commit4d44996af618bf3907370e45a1e875e3802398d0 (patch)
treee7e7278ff8d3c709addca18549d519b3ff368a4d /test/handler/test_perlcritic_handler.vader
parent9e7c493e7e6a5b7d22502aebda399e93d40a7974 (diff)
downloadale-4d44996af618bf3907370e45a1e875e3802398d0.zip
perlcritic: all issues are warnings
Perlcritic is a style checker, not a syntax validator. This change was originally proposed by @RsrchBoy in https://github.com/w0rp/ale/pull/784.
Diffstat (limited to 'test/handler/test_perlcritic_handler.vader')
-rw-r--r--test/handler/test_perlcritic_handler.vader20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/handler/test_perlcritic_handler.vader b/test/handler/test_perlcritic_handler.vader
new file mode 100644
index 00000000..f00b07da
--- /dev/null
+++ b/test/handler/test_perlcritic_handler.vader
@@ -0,0 +1,20 @@
+Before:
+ runtime ale_linters/perl/perlcritic.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The Perl::Critic handler should create all issues as warnings):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': '21',
+ \ 'col': '17',
+ \ 'text': 'Regular expression without "/m" flag',
+ \ 'type': 'W',
+ \ }
+ \ ],
+ \ ale_linters#perl#perlcritic#Handle(99, [
+ \ '21:17 Regular expression without "/m" flag'
+ \ ])
+