1
0
Fork 0
mirror of synced 2024-07-01 21:11:09 -04:00
ultimate-vim/sources_non_forked/ale/test/linter/test_terraform_terraform.vader

16 lines
514 B
Plaintext
Raw Normal View History

2022-05-19 09:16:38 -04:00
" 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 '