summaryrefslogtreecommitdiff
path: root/test/command_callback
diff options
context:
space:
mode:
authorRaphael Hoegger <pfuender@users.noreply.github.com>2019-04-10 19:52:52 +0200
committerw0rp <w0rp@users.noreply.github.com>2019-04-10 18:52:52 +0100
commit81423701b0378af56d53402b1a95026b71369246 (patch)
tree21dd9e07e9cde7b3cfa7d10e416064dcb12e1bcf /test/command_callback
parentabcefe7a6e2555db924d56e3d88f28cf5b6a55e8 (diff)
downloadale-81423701b0378af56d53402b1a95026b71369246.zip
Adding new linter "cookstyle" for chef recipes (Issue #1187) (#2362)
Diffstat (limited to 'test/command_callback')
-rw-r--r--test/command_callback/test_cookstyle_command_callback.vader19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/command_callback/test_cookstyle_command_callback.vader b/test/command_callback/test_cookstyle_command_callback.vader
new file mode 100644
index 00000000..ad7391cc
--- /dev/null
+++ b/test/command_callback/test_cookstyle_command_callback.vader
@@ -0,0 +1,19 @@
+Before:
+ call ale#assert#SetUpLinterTest('chef', 'cookstyle')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The default command should be correct):
+ AssertLinter 'cookstyle', ale#Escape('cookstyle') . ' --force-exclusion --format json --stdin %s'
+
+Execute(The executable path should be configurable):
+ let b:ale_chef_cookstyle_executable = 'foobar'
+
+ AssertLinter 'foobar', ale#Escape('foobar') . ' --force-exclusion --format json --stdin %s'
+
+Execute(The linter options should be configurable):
+ let b:ale_chef_cookstyle_options = '--parallel'
+
+ AssertLinter 'cookstyle', ale#Escape('cookstyle') . ' --parallel --force-exclusion --format json --stdin %s'
+