This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/fixers/test_sqlfmt_fixer_callback.vader
2018-09-08 01:34:10 +02:00

26 lines
589 B
Text

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(''))