mirror of https://github.com/dense-analysis/ale
16 lines
515 B
Plaintext
16 lines
515 B
Plaintext
" 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 overridden):
|
|
let b:ale_terraform_terraform_executable = '/bin/other/terraform'
|
|
AssertLinter '/bin/other/terraform',
|
|
\ ale#Escape('/bin/other/terraform') . ' validate -no-color -json '
|