summaryrefslogtreecommitdiff
path: root/test/command_callback/test_gotype_command_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2021-03-01 20:11:10 +0000
committerw0rp <devw0rp@gmail.com>2021-03-01 20:11:10 +0000
commit9fe7b1fe6a23fb55e6d782293585d58193123f59 (patch)
tree0403deb70011aee7be08e586b10b5828cf69499e /test/command_callback/test_gotype_command_callback.vader
parent48fab99a0ab793e1b9607795c21659f12bd6947f (diff)
downloadale-9fe7b1fe6a23fb55e6d782293585d58193123f59.zip
Close #2281 - Separate cwd commands from commands
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future.
Diffstat (limited to 'test/command_callback/test_gotype_command_callback.vader')
-rw-r--r--test/command_callback/test_gotype_command_callback.vader12
1 files changed, 4 insertions, 8 deletions
diff --git a/test/command_callback/test_gotype_command_callback.vader b/test/command_callback/test_gotype_command_callback.vader
index 204197d9..47845dd6 100644
--- a/test/command_callback/test_gotype_command_callback.vader
+++ b/test/command_callback/test_gotype_command_callback.vader
@@ -10,19 +10,15 @@ After:
call ale#assert#TearDownLinterTest()
Execute(The default gotype command should be correct):
- AssertLinter 'gotype',
- \ ale#path#BufferCdString(bufnr(''))
- \ . ' gotype -e .'
+ AssertLinterCwd '%s:h'
+ AssertLinter 'gotype', 'gotype -e .'
Execute(The gotype callback should ignore test files):
call ale#test#SetFilename('bla_test.go')
- AssertLinter 'gotype', ''
+ AssertLinterNotExecuted
Execute(The gotype callback should support Go environment variables):
let b:ale_go_go111module = 'on'
- AssertLinter 'gotype',
- \ ale#path#BufferCdString(bufnr(''))
- \ . ' ' . ale#Env('GO111MODULE', 'on')
- \ . 'gotype -e .'
+ AssertLinter 'gotype', ale#Env('GO111MODULE', 'on') . 'gotype -e .'