summaryrefslogtreecommitdiff
path: root/test/linter/test_gotype.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_gotype.vader')
-rw-r--r--test/linter/test_gotype.vader24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/linter/test_gotype.vader b/test/linter/test_gotype.vader
new file mode 100644
index 00000000..22829a17
--- /dev/null
+++ b/test/linter/test_gotype.vader
@@ -0,0 +1,24 @@
+Before:
+ Save g:ale_go_go111module
+
+ call ale#assert#SetUpLinterTest('go', 'gotype')
+ call ale#test#SetFilename('../test-files/go/testfile2.go')
+
+After:
+ unlet! b:ale_go_go111module
+
+ call ale#assert#TearDownLinterTest()
+
+Execute(The default gotype command should be correct):
+ AssertLinterCwd '%s:h'
+ AssertLinter 'gotype', 'gotype -e .'
+
+Execute(The gotype callback should ignore test files):
+ call ale#test#SetFilename('bla_test.go')
+
+ AssertLinterNotExecuted
+
+Execute(The gotype callback should support Go environment variables):
+ let b:ale_go_go111module = 'on'
+
+ AssertLinter 'gotype', ale#Env('GO111MODULE', 'on') . 'gotype -e .'