diff options
author | Carl Smedstad <carl.smedstad@protonmail.com> | 2022-09-14 01:13:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 08:13:41 +0900 |
commit | 8e03ceecdc4151b6a85c004ce4ef699da0a1f57a (patch) | |
tree | 6f4df01e268eb985f7dd144b4edf3e9cd1539ceb /test/handler | |
parent | 77fcf9b2c270dd2c97fd175dbabed79a84114690 (diff) | |
download | ale-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/handler')
-rw-r--r-- | test/handler/test_bicep_bicep_handler.vader | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/handler/test_bicep_bicep_handler.vader b/test/handler/test_bicep_bicep_handler.vader new file mode 100644 index 00000000..d105cae5 --- /dev/null +++ b/test/handler/test_bicep_bicep_handler.vader @@ -0,0 +1,30 @@ +Before: + runtime ale_linters/bicep/bicep.vim + +After: + Restore + + call ale#linter#Reset() + +Execute(The cmake_lint handler should handle basic warnings): + AssertEqual + \ [ + \ { + \ 'lnum': 7, + \ 'col': 10, + \ 'type': 'W', + \ 'code': 'no-unused-existing-resources', + \ 'text': 'Existing resource "asdasd" is declared but never used. [https://aka.ms/bicep/linter/no-unused-existing-resources]', + \ }, + \ { + \ 'lnum': 106, + \ 'col': 6, + \ 'type': 'E', + \ 'code': 'BCP019', + \ 'text': 'Expected a new line character at this location.', + \ }, + \ ], + \ ale_linters#bicep#bicep#Handle(1, [ + \ '/tmp/nvimhxqs5D/1/dns.bicep(7,10) : Warning no-unused-existing-resources: Existing resource "asdasd" is declared but never used. [https://aka.ms/bicep/linter/no-unused-existing-resources]', + \ '/tmp/nvimhxqs5D/1/dns.bicep(106,6) : Error BCP019: Expected a new line character at this location.', + \ ]) |