diff options
author | Alexander "Ananace" Olofsson <ace@haxalot.com> | 2018-10-26 18:34:32 +0200 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2018-10-26 17:34:32 +0100 |
commit | 7af33637e874efea63a0bc27769aa4728962c652 (patch) | |
tree | a6cddce9bf5c5a661df6a1df5c0787b675ef8a9e /test/command_callback | |
parent | 34318aedf4ffaf4558a102db6c03ae3b13d5ff08 (diff) | |
download | ale-7af33637e874efea63a0bc27769aa4728962c652.zip |
Add the dockerfile_lint linter for Dockerfiles (#1971)
* Add the dockerfile_lint linter for Dockerfiles
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_dockerfile_lint_command_callback.vader | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/command_callback/test_dockerfile_lint_command_callback.vader b/test/command_callback/test_dockerfile_lint_command_callback.vader new file mode 100644 index 00000000..abc32e0d --- /dev/null +++ b/test/command_callback/test_dockerfile_lint_command_callback.vader @@ -0,0 +1,19 @@ +Before: + call ale#assert#SetUpLinterTest('dockerfile', 'dockerfile_lint') + +After: + call ale#assert#TearDownLinterTest() + +Execute(The default command should be correct): + AssertLinter 'dockerfile_lint', ale#Escape('dockerfile_lint') . ' -p -j -f %t' + +Execute(The executable should be configurable): + let b:ale_dockerfile_dockerfile_lint_executable = 'foobar' + + AssertLinter 'foobar', ale#Escape('foobar') . ' -p -j -f %t' + +Execute(The options should be configurable): + let b:ale_dockerfile_dockerfile_lint_options = '-r additional.yaml' + + AssertLinter 'dockerfile_lint', ale#Escape('dockerfile_lint') . ' -r additional.yaml -p -j -f %t' + |