mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-25 02:57:20 +08:00
30
test/fixers/test_bibclean_fixer_callback.vader
Normal file
30
test/fixers/test_bibclean_fixer_callback.vader
Normal file
@@ -0,0 +1,30 @@
|
||||
Before:
|
||||
Save g:ale_bib_bibclean_executable
|
||||
Save g:ale_bib_bibclean_options
|
||||
|
||||
let g:ale_bib_bibclean_executable = 'xxxinvalid'
|
||||
let g:ale_bib_bibclean_options = '-align-equals'
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test/fixers')
|
||||
|
||||
After:
|
||||
Restore
|
||||
call ale#test#RestoreDirectory()
|
||||
|
||||
Execute(The bibclean callback should return the correct default values):
|
||||
call ale#test#SetFilename('../command_callback/bib_paths/dummy.bib')
|
||||
|
||||
AssertEqual
|
||||
\ {'command': ale#Escape(g:ale_bib_bibclean_executable) . ' -align-equals'},
|
||||
\ ale#fixers#bibclean#Fix(bufnr(''))
|
||||
|
||||
Execute(The bibclean callback should include custom bibclean options):
|
||||
let g:ale_bib_bibclean_options = '-author -check-values'
|
||||
call ale#test#SetFilename('../command_callback/bib_paths/dummy.bib')
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'command': ale#Escape(g:ale_bib_bibclean_executable) . ' -author -check-values'
|
||||
\ },
|
||||
\ ale#fixers#bibclean#Fix(bufnr(''))
|
||||
|
||||
@@ -4,9 +4,7 @@ Before:
|
||||
" Use an invalid global executable, so we don't match it.
|
||||
let g:ale_ruby_rufo_executable = 'xxxinvalid'
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test/fixers')
|
||||
silent cd ..
|
||||
silent cd command_callback
|
||||
call ale#test#SetDirectory('/testplugin/test/command_callback')
|
||||
let g:dir = getcwd()
|
||||
|
||||
After:
|
||||
|
||||
Reference in New Issue
Block a user