summaryrefslogtreecommitdiff
path: root/test/command_callback/test_gotype_command_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-15 18:24:53 +0100
committerw0rp <devw0rp@gmail.com>2018-07-15 18:28:28 +0100
commita42999a639b2916b769a85f37d037be314d9d61b (patch)
tree5ebfb4d357dc673efa93fd32a66b489c4510de40 /test/command_callback/test_gotype_command_callback.vader
parent5155a35a80fe3b20659eb0f28cc6cc720532dd3f (diff)
downloadale-a42999a639b2916b769a85f37d037be314d9d61b.zip
Massively reduce the amount of code needed for linter tests
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, 6 insertions, 6 deletions
diff --git a/test/command_callback/test_gotype_command_callback.vader b/test/command_callback/test_gotype_command_callback.vader
index 4fba3344..da9ceaf3 100644
--- a/test/command_callback/test_gotype_command_callback.vader
+++ b/test/command_callback/test_gotype_command_callback.vader
@@ -1,15 +1,15 @@
Before:
- runtime ale_linters/go/gotype.vim
+ call ale#assert#SetUpLinterTest('go', 'gotype')
call ale#test#SetFilename('../go_files/testfile2.go')
After:
- call ale#linter#Reset()
+ call ale#assert#TearDownLinterTest()
Execute(The default gotype command should be correct):
- AssertEqual 'cd ' . ale#Escape(expand('%:p:h')) . ' && '
- \ . ' gotype .',
- \ ale_linters#go#gotype#GetCommand(bufnr(''))
+ AssertLinter 'gotype',
+ \ 'cd ' . ale#Escape(expand('%:p:h')) . ' && gotype .'
Execute(The gotype callback should ignore test files):
call ale#test#SetFilename('bla_test.go')
- AssertEqual 0, ale_linters#go#gotype#GetCommand(bufnr(''))
+
+ AssertLinter 'gotype', ''