From a42999a639b2916b769a85f37d037be314d9d61b Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 15 Jul 2018 18:24:53 +0100 Subject: Massively reduce the amount of code needed for linter tests --- test/command_callback/test_qmlfmt_command_callback.vader | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'test/command_callback/test_qmlfmt_command_callback.vader') diff --git a/test/command_callback/test_qmlfmt_command_callback.vader b/test/command_callback/test_qmlfmt_command_callback.vader index 263caea7..53502f4d 100644 --- a/test/command_callback/test_qmlfmt_command_callback.vader +++ b/test/command_callback/test_qmlfmt_command_callback.vader @@ -1,18 +1,13 @@ Before: - runtime ale_linters/qml/qmlfmt.vim + call ale#assert#SetUpLinterTest('qml', 'qmlfmt') After: - let g:ale_qml_qmlfmt_executable = 'qmlfmt' - - call ale#linter#Reset() + call ale#assert#TearDownLinterTest() Execute(The qml qmlfmt command callback should return the correct default string): - AssertEqual ale#Escape('qmlfmt') . ' -e', - \ join(split(ale_linters#qml#qmlfmt#GetCommand(1))) + AssertLinter 'qmlfmt', ale#Escape('qmlfmt') . ' -e', Execute(The qmlfmt executable should be configurable): let g:ale_qml_qmlfmt_executable = '~/.local/bin/qmlfmt' - AssertEqual '~/.local/bin/qmlfmt', ale_linters#qml#qmlfmt#GetExecutable(1) - AssertEqual ale#Escape('~/.local/bin/qmlfmt') . ' -e', - \ join(split(ale_linters#qml#qmlfmt#GetCommand(1))) + AssertLinter '~/.local/bin/qmlfmt', ale#Escape('~/.local/bin/qmlfmt') . ' -e' -- cgit v1.2.3