blob: 25ca652aa03e214e3a428905d22eabfc9679e5f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
" Based upon :help ale-development
Before:
call ale#assert#SetUpLinterTest('terraform', 'terraform')
After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinter 'terraform',
\ ale#Escape('terraform') . ' validate -no-color -json '
Execute(The default command should be overriden):
let b:ale_terraform_terraform_executable = '/bin/other/terraform'
AssertLinter '/bin/other/terraform',
\ ale#Escape('/bin/other/terraform') . ' validate -no-color -json '
|