diff options
author | Horacio Sanson <horacio@allm.net> | 2018-11-07 17:33:14 +0900 |
---|---|---|
committer | Horacio Sanson <horacio@allm.net> | 2018-12-01 15:05:18 +0900 |
commit | 9e97a6914e1f7f5ab4ac80c33150c42f733d3a1b (patch) | |
tree | caf7a8965dfcc5d6fd4483959e170d64863aaaab /test/fixers | |
parent | 1d4f98553852499e0f8ebd951db6ada2b1d973e3 (diff) | |
download | ale-9e97a6914e1f7f5ab4ac80c33150c42f733d3a1b.zip |
Add bibclen fixer support
Closes #1910
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_bibclean_fixer_callback.vader | 30 | ||||
-rw-r--r-- | test/fixers/test_rufo_fixer_callback.vader | 4 |
2 files changed, 31 insertions, 3 deletions
diff --git a/test/fixers/test_bibclean_fixer_callback.vader b/test/fixers/test_bibclean_fixer_callback.vader new file mode 100644 index 00000000..8d3081e3 --- /dev/null +++ b/test/fixers/test_bibclean_fixer_callback.vader @@ -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('')) + diff --git a/test/fixers/test_rufo_fixer_callback.vader b/test/fixers/test_rufo_fixer_callback.vader index a0828406..98108efc 100644 --- a/test/fixers/test_rufo_fixer_callback.vader +++ b/test/fixers/test_rufo_fixer_callback.vader @@ -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: |