summaryrefslogtreecommitdiff
path: root/test/linter/test_cpplint.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_cpplint.vader')
-rw-r--r--test/linter/test_cpplint.vader17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/linter/test_cpplint.vader b/test/linter/test_cpplint.vader
new file mode 100644
index 00000000..d5fd457b
--- /dev/null
+++ b/test/linter/test_cpplint.vader
@@ -0,0 +1,17 @@
+Before:
+ call ale#assert#SetUpLinterTest('cpp', 'cpplint')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The executable should be configurable):
+ AssertLinter 'cpplint', ale#Escape('cpplint') . ' %s'
+
+ let b:ale_cpp_cpplint_executable = 'foobar'
+
+ AssertLinter 'foobar', ale#Escape('foobar') . ' %s'
+
+Execute(The options should be configurable):
+ let b:ale_cpp_cpplint_options = '--something'
+
+ AssertLinter 'cpplint', ale#Escape('cpplint') . ' --something %s'