diff options
author | w0rp <devw0rp@gmail.com> | 2019-08-02 09:09:10 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-08-02 09:09:10 +0100 |
commit | dd1e1025b8a9b13cb7966bf2baa3e6b42a862857 (patch) | |
tree | feb86095d4535a7d0e9a205b36008e41d1696963 /test/fixers/test_gofmt_fixer_callback.vader | |
parent | 3ae01ba24967a37e5a41626673422be53e188026 (diff) | |
download | ale-dd1e1025b8a9b13cb7966bf2baa3e6b42a862857.zip |
Fix #2668 - Set g:ale_go_go111module
Diffstat (limited to 'test/fixers/test_gofmt_fixer_callback.vader')
-rw-r--r-- | test/fixers/test_gofmt_fixer_callback.vader | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/fixers/test_gofmt_fixer_callback.vader b/test/fixers/test_gofmt_fixer_callback.vader index b8376142..16659655 100644 --- a/test/fixers/test_gofmt_fixer_callback.vader +++ b/test/fixers/test_gofmt_fixer_callback.vader @@ -1,17 +1,19 @@ Before: Save g:ale_go_gofmt_executable Save g:ale_go_gofmt_options + Save g:ale_go_go111module " Use an invalid global executable, so we don't match it. let g:ale_go_gofmt_executable = 'xxxinvalid' let g:ale_go_gofmt_options = '' - let g:ale_go_go111module = '' call ale#test#SetDirectory('/testplugin/test/fixers') After: Restore + unlet! b:ale_go_go111module + call ale#test#RestoreDirectory() Execute(The gofmt callback should return the correct default values): @@ -28,6 +30,7 @@ Execute(The gofmt callback should return the correct default values): Execute(The gofmt callback should include custom gofmt options): let g:ale_go_gofmt_options = "-r '(a) -> a'" + call ale#test#SetFilename('../go_files/testfile.go') AssertEqual @@ -42,6 +45,7 @@ Execute(The gofmt callback should include custom gofmt options): Execute(The gofmt callback should support Go environment variables): let g:ale_go_go111module = 'off' + call ale#test#SetFilename('../go_files/testfile.go') AssertEqual |