summaryrefslogtreecommitdiff
path: root/test/command_callback/test_gofmt_command_callback.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/command_callback/test_gofmt_command_callback.vader')
-rw-r--r--test/command_callback/test_gofmt_command_callback.vader26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/command_callback/test_gofmt_command_callback.vader b/test/command_callback/test_gofmt_command_callback.vader
deleted file mode 100644
index b056a659..00000000
--- a/test/command_callback/test_gofmt_command_callback.vader
+++ /dev/null
@@ -1,26 +0,0 @@
-Before:
- Save g:ale_go_go111module
- Save b:ale_go_go111module
-
- let b:ale_go_go111module = ''
-
- call ale#assert#SetUpLinterTest('go', 'gofmt')
- call ale#test#SetFilename('../test-files/go/testfile2.go')
-
-After:
- Restore
-
- unlet! b:ale_go_go111module
-
- call ale#assert#TearDownLinterTest()
-
-Execute(The default gofmt command should be correct):
- AssertLinter 'gofmt',
- \ ale#Escape('gofmt') . ' -e %t'
-
-Execute(The gofmt command should support Go environment variables):
- let b:ale_go_go111module = 'on'
-
- AssertLinter 'gofmt',
- \ ale#Env('GO111MODULE', 'on')
- \ . ale#Escape('gofmt') . ' -e %t'