summaryrefslogtreecommitdiff
path: root/test/linter
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2021-06-19 11:00:26 +0100
committerw0rp <devw0rp@gmail.com>2021-06-19 11:00:26 +0100
commit2c8a857262d9fd8523938ca07eed590de1224fd3 (patch)
tree2f566c5ad8098bc989ff7bb78dc65f233e1af872 /test/linter
parente78519683e5320971faa7fe5c9dd8c0dd6fd3100 (diff)
downloadale-2c8a857262d9fd8523938ca07eed590de1224fd3.zip
Move a test file to match the newer location
Diffstat (limited to 'test/linter')
-rw-r--r--test/linter/test_protolint.vader24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/linter/test_protolint.vader b/test/linter/test_protolint.vader
new file mode 100644
index 00000000..4463b629
--- /dev/null
+++ b/test/linter/test_protolint.vader
@@ -0,0 +1,24 @@
+Before:
+ call ale#assert#SetUpLinterTest('proto', 'protolint')
+ call ale#test#SetFilename('test.proto')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The default command should be correct):
+ AssertLinter 'protolint',
+ \ ale#Escape('protolint')
+ \ . ' lint'
+ \ . ' -reporter=unix'
+ \ . ' %s'
+
+Execute(The callback should include any additional options):
+ let b:ale_proto_protolint_executable = '/tmp/protolint'
+ let b:ale_proto_protolint_config = '/tmp/protolint.yaml'
+
+ AssertLinter '/tmp/protolint',
+ \ ale#Escape('/tmp/protolint')
+ \ . ' lint'
+ \ . ' -config_path=' . ale#Escape('/tmp/protolint.yaml')
+ \ . ' -reporter=unix'
+ \ . ' %s'