summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrey Popp <8mayday@gmail.com>2020-10-03 17:57:59 +0300
committerAndrey Popp <8mayday@gmail.com>2020-10-03 18:44:19 +0300
commit96ec33e6d6119fea01fee7aaed1e8a21ef6ef677 (patch)
treef9dd01a88714a5e0d01aaf029f8a7cac9e7723d2 /test
parentb91c6c2edd20794ad5637b561ed4c678647a76e5 (diff)
downloadale-96ec33e6d6119fea01fee7aaed1e8a21ef6ef677.zip
Use stdin/stdout to communicate with gofmt
Diffstat (limited to 'test')
-rw-r--r--test/fixers/test_gofmt_fixer_callback.vader14
1 files changed, 3 insertions, 11 deletions
diff --git a/test/fixers/test_gofmt_fixer_callback.vader b/test/fixers/test_gofmt_fixer_callback.vader
index 16659655..99407173 100644
--- a/test/fixers/test_gofmt_fixer_callback.vader
+++ b/test/fixers/test_gofmt_fixer_callback.vader
@@ -21,10 +21,7 @@ Execute(The gofmt callback should return the correct default values):
AssertEqual
\ {
- \ 'read_temporary_file': 1,
- \ 'command': ale#Escape('xxxinvalid')
- \ . ' -l -w'
- \ . ' %t',
+ \ 'command': ale#Escape('xxxinvalid'),
\ },
\ ale#fixers#gofmt#Fix(bufnr(''))
@@ -35,11 +32,8 @@ Execute(The gofmt callback should include custom gofmt options):
AssertEqual
\ {
- \ 'read_temporary_file': 1,
\ 'command': ale#Escape('xxxinvalid')
- \ . ' -l -w'
- \ . ' ' . g:ale_go_gofmt_options
- \ . ' %t',
+ \ . ' ' . g:ale_go_gofmt_options,
\ },
\ ale#fixers#gofmt#Fix(bufnr(''))
@@ -50,9 +44,7 @@ Execute(The gofmt callback should support Go environment variables):
AssertEqual
\ {
- \ 'read_temporary_file': 1,
\ 'command': ale#Env('GO111MODULE', 'off')
- \ . ale#Escape('xxxinvalid') . ' -l -w'
- \ . ' %t',
+ \ . ale#Escape('xxxinvalid')
\ },
\ ale#fixers#gofmt#Fix(bufnr(''))