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/command_callback/test_gosimple_command_callback.vader | |
parent | 3ae01ba24967a37e5a41626673422be53e188026 (diff) | |
download | ale-dd1e1025b8a9b13cb7966bf2baa3e6b42a862857.zip |
Fix #2668 - Set g:ale_go_go111module
Diffstat (limited to 'test/command_callback/test_gosimple_command_callback.vader')
-rw-r--r-- | test/command_callback/test_gosimple_command_callback.vader | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/command_callback/test_gosimple_command_callback.vader b/test/command_callback/test_gosimple_command_callback.vader index e6233091..ee89eed8 100644 --- a/test/command_callback/test_gosimple_command_callback.vader +++ b/test/command_callback/test_gosimple_command_callback.vader @@ -1,8 +1,12 @@ Before: + Save g:ale_go_go111module + call ale#assert#SetUpLinterTest('go', 'gosimple') call ale#test#SetFilename('../go_files/testfile2.go') After: + unlet! b:ale_go_go111module + call ale#assert#TearDownLinterTest() Execute(The default gosimple command should be correct): @@ -15,5 +19,3 @@ Execute(The gosimple command should support Go environment variables): AssertLinter 'gosimple', \ ale#path#CdString(expand('%:p:h')) . ' ' \ . ale#Env('GO111MODULE', 'on') . 'gosimple .' - - unlet! b:ale_go_go111module |