mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-16 01:07:06 +08:00
Merge pull request #1897 from LEI/add-sqlfmt-fixer
Add support for sqlfmt
This commit is contained in:
26
test/fixers/test_sqlfmt_fixer_callback.vader
Normal file
26
test/fixers/test_sqlfmt_fixer_callback.vader
Normal file
@@ -0,0 +1,26 @@
|
||||
Before:
|
||||
Save g:ale_sql_sqlfmt_executable
|
||||
Save g:ale_sql_sqlfmt_options
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
Execute(The sqlfmt callback should return the correct default values):
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'command': ale#Escape('sqlfmt')
|
||||
\ . ' -w',
|
||||
\ },
|
||||
\ ale#fixers#sqlfmt#Fix(bufnr(''))
|
||||
|
||||
Execute(The sqlfmt executable and options should be configurable):
|
||||
let g:ale_sql_sqlfmt_executable = '/path/to/sqlfmt'
|
||||
let g:ale_sql_sqlfmt_options = '-u'
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'command': ale#Escape('/path/to/sqlfmt')
|
||||
\ . ' -w'
|
||||
\ . ' -u',
|
||||
\ },
|
||||
\ ale#fixers#sqlfmt#Fix(bufnr(''))
|
||||
Reference in New Issue
Block a user