summaryrefslogtreecommitdiff
path: root/test/linter
diff options
context:
space:
mode:
authorCarl Smedstad <carl.smedstad@protonmail.com>2022-09-14 01:13:41 +0200
committerGitHub <noreply@github.com>2022-09-14 08:13:41 +0900
commit8e03ceecdc4151b6a85c004ce4ef699da0a1f57a (patch)
tree6f4df01e268eb985f7dd144b4edf3e9cd1539ceb /test/linter
parent77fcf9b2c270dd2c97fd175dbabed79a84114690 (diff)
downloadale-8e03ceecdc4151b6a85c004ce4ef699da0a1f57a.zip
Add support for Microsoft's DSL Bicep (#4310)
* Add support for Microsoft's DSL Bicep The compilation command 'bicep build' catches compilation errors as well as providing some lint warnings. Repository for Bicep: https://github.com/Azure/bicep * Different null file on Windows & hardcode commands
Diffstat (limited to 'test/linter')
-rw-r--r--test/linter/test_bicep_bicep.vader21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/linter/test_bicep_bicep.vader b/test/linter/test_bicep_bicep.vader
new file mode 100644
index 00000000..2beb2f22
--- /dev/null
+++ b/test/linter/test_bicep_bicep.vader
@@ -0,0 +1,21 @@
+Before:
+ call ale#assert#SetUpLinterTest('bicep', 'bicep')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The default command should be correct):
+ if has('win32')
+ AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile NUL %t'
+ else
+ AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile /dev/null %t'
+ endif
+
+Execute(The executable should be configurable):
+ let g:ale_bicep_bicep_executable = 'foobar'
+
+ if has('win32')
+ AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile NUL %t'
+ else
+ AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile /dev/null %t'
+ endif