summaryrefslogtreecommitdiff
path: root/test/command_callback/test_proto_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_proto_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_proto_command_callback.vader')
-rw-r--r--test/command_callback/test_proto_command_callback.vader17
1 files changed, 6 insertions, 11 deletions
diff --git a/test/command_callback/test_proto_command_callback.vader b/test/command_callback/test_proto_command_callback.vader
index 76050c61..726588c0 100644
--- a/test/command_callback/test_proto_command_callback.vader
+++ b/test/command_callback/test_proto_command_callback.vader
@@ -1,21 +1,16 @@
Before:
+ call ale#assert#SetUpLinterTest('proto', 'protoc_gen_lint')
call ale#test#SetFilename('test.proto')
After:
- Restore
-
- unlet! b:ale_proto_protoc_gen_lint_options
-
- call ale#linter#Reset()
+ call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
- AssertEqual
- \ 'protoc' . ' -I ' . ale#Escape(getcwd()) . ' --lint_out=. ' . '%s',
- \ ale_linters#proto#protoc_gen_lint#GetCommand(bufnr(''))
+ AssertLinter 'protoc',
+ \ 'protoc' . ' -I ' . ale#Escape(getcwd()) . ' --lint_out=. ' . '%s'
Execute(The callback should include any additional options):
let b:ale_proto_protoc_gen_lint_options = '--some-option'
- AssertEqual
- \ 'protoc' . ' -I ' . ale#Escape(getcwd()) . ' --some-option --lint_out=. ' . '%s',
- \ ale_linters#proto#protoc_gen_lint#GetCommand(bufnr(''))
+ AssertLinter 'protoc',
+ \ 'protoc' . ' -I ' . ale#Escape(getcwd()) . ' --some-option --lint_out=. ' . '%s'