mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 21:24:33 +08:00
Massively reduce the amount of code needed for linter tests
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user