2017-10-26 14:32:33 -04:00
|
|
|
Before:
|
2018-07-15 13:24:53 -04:00
|
|
|
call ale#assert#SetUpLinterTest('terraform', 'tflint')
|
2017-10-26 14:32:33 -04:00
|
|
|
|
|
|
|
After:
|
2018-07-15 13:24:53 -04:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2017-10-26 14:32:33 -04:00
|
|
|
|
2018-07-15 13:24:53 -04:00
|
|
|
Execute(The default command should be correct):
|
|
|
|
AssertLinter 'tflint', ale#Escape('tflint') . ' -f json %t'
|
2017-10-26 14:32:33 -04:00
|
|
|
|
|
|
|
Execute(The default executable should be configurable):
|
2018-07-15 13:24:53 -04:00
|
|
|
let b:ale_terraform_tflint_executable = 'asdf'
|
2017-10-26 14:32:33 -04:00
|
|
|
|
2018-07-15 13:24:53 -04:00
|
|
|
AssertLinter 'asdf', ale#Escape('asdf') . ' -f json %t'
|
2017-10-26 14:32:33 -04:00
|
|
|
|
2018-07-15 13:24:53 -04:00
|
|
|
Execute(Overriding options should work):
|
2017-10-26 14:32:33 -04:00
|
|
|
let g:ale_terraform_tflint_executable = 'fnord'
|
|
|
|
let g:ale_terraform_tflint_options = '--whatever'
|
2018-07-15 13:24:53 -04:00
|
|
|
|
|
|
|
AssertLinter 'fnord', ale#Escape('fnord') . ' --whatever -f json %t'
|