diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-07-30 21:17:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 21:17:20 +0100 |
commit | 3ae01ba24967a37e5a41626673422be53e188026 (patch) | |
tree | b68094ab353b74b998de86f003631401f5ff0d85 /test/command_callback/test_gosimple_command_callback.vader | |
parent | 8f5ecf01200f82d12d452992a92c23fcf9e0f0e8 (diff) | |
parent | 49db8210f68637a2af14b21940f3cbbaf7361047 (diff) | |
download | ale-3ae01ba24967a37e5a41626673422be53e188026.zip |
Merge pull request #2430 from eliath/master
Support $GO111MODULE with Go tooling
Diffstat (limited to 'test/command_callback/test_gosimple_command_callback.vader')
-rw-r--r-- | test/command_callback/test_gosimple_command_callback.vader | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/command_callback/test_gosimple_command_callback.vader b/test/command_callback/test_gosimple_command_callback.vader index 59013df0..e6233091 100644 --- a/test/command_callback/test_gosimple_command_callback.vader +++ b/test/command_callback/test_gosimple_command_callback.vader @@ -8,3 +8,12 @@ After: Execute(The default gosimple command should be correct): AssertLinter 'gosimple', \ ale#path#CdString(expand('%:p:h')) . ' gosimple .' + +Execute(The gosimple command should support Go environment variables): + let b:ale_go_go111module = 'on' + + AssertLinter 'gosimple', + \ ale#path#CdString(expand('%:p:h')) . ' ' + \ . ale#Env('GO111MODULE', 'on') . 'gosimple .' + + unlet! b:ale_go_go111module |