summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Hotham <david.hotham@metaswitch.com>2021-05-25 01:41:14 +0100
committerGitHub <noreply@github.com>2021-05-25 09:41:14 +0900
commit3f386ae5e988d6e1b39332a760f9e990d2df7f31 (patch)
tree26fa17bc98ea29922f96df1fc13bb04d42e7c2f4 /test
parentbf1c30f585fe4ff68596d93230964b862e8d5940 (diff)
downloadale-3f386ae5e988d6e1b39332a760f9e990d2df7f31.zip
Don't use a temporary file for tflint (#3717)
* Don't use a temporary file for tflint * set cwd for tflint
Diffstat (limited to 'test')
-rw-r--r--test/linter/test_terraform_tflint.vader8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/linter/test_terraform_tflint.vader b/test/linter/test_terraform_tflint.vader
index 96811e81..b1963a77 100644
--- a/test/linter/test_terraform_tflint.vader
+++ b/test/linter/test_terraform_tflint.vader
@@ -5,18 +5,18 @@ After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
- AssertLinter 'tflint', ale#Escape('tflint') . ' -f json %t'
+ AssertLinter 'tflint', ale#Escape('tflint') . ' -f json'
Execute(The default executable should be configurable):
let b:ale_terraform_tflint_executable = 'asdf'
- AssertLinter 'asdf', ale#Escape('asdf') . ' -f json %t'
+ AssertLinter 'asdf', ale#Escape('asdf') . ' -f json'
Execute(Overriding options should work):
let g:ale_terraform_tflint_executable = 'fnord'
let g:ale_terraform_tflint_options = '--whatever'
- AssertLinter 'fnord', ale#Escape('fnord') . ' --whatever -f json %t'
+ AssertLinter 'fnord', ale#Escape('fnord') . ' --whatever -f json'
Execute(Configuration files should be found):
call ale#test#SetFilename('../test-files/tflint/foo/bar.tf')
@@ -25,4 +25,4 @@ Execute(Configuration files should be found):
\ ale#Escape('tflint')
\ . ' --config '
\ . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/tflint/foo/.tflint.hcl'))
- \ . ' -f json %t'
+ \ . ' -f json'