summaryrefslogtreecommitdiff
path: root/test/linter/test_perl.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_perl.vader')
-rw-r--r--test/linter/test_perl.vader14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/linter/test_perl.vader b/test/linter/test_perl.vader
new file mode 100644
index 00000000..3c4b661c
--- /dev/null
+++ b/test/linter/test_perl.vader
@@ -0,0 +1,14 @@
+Before:
+ call ale#assert#SetUpLinterTest('perl', 'perl')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The default Perl command callback should be correct):
+ AssertLinter 'perl', ale#Escape('perl') . ' -c -Mwarnings -Ilib %t'
+
+Execute(Overriding the executable and command should work):
+ let b:ale_perl_perl_executable = 'foobar'
+ let b:ale_perl_perl_options = '-w'
+
+ AssertLinter 'foobar', ale#Escape('foobar') . ' -w %t'