summaryrefslogtreecommitdiff
path: root/test/linter/test_zeek.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_zeek.vader')
-rw-r--r--test/linter/test_zeek.vader17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/linter/test_zeek.vader b/test/linter/test_zeek.vader
new file mode 100644
index 00000000..af58a414
--- /dev/null
+++ b/test/linter/test_zeek.vader
@@ -0,0 +1,17 @@
+Before:
+ call ale#assert#SetUpLinterTest('zeek', 'zeek')
+
+ let b:command_tail = ' --parse-only %s'
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+ unlet! b:command_tail
+
+Execute(The default command should be correct):
+ AssertLinter 'zeek', ale#Escape('zeek') . b:command_tail
+
+Execute(The zeek executable should be configurable, and escaped properly):
+ let g:ale_zeek_zeek_executable = 'executable with spaces'
+
+ AssertLinter 'executable with spaces', ale#Escape('executable with spaces') . b:command_tail