diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-12-06 20:26:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 20:26:04 +0000 |
commit | 3db564f7742360a870679ef6c63361371646fed8 (patch) | |
tree | c711e395e69d6a8ca870b2632f5c5861276ef9fb /test/command_callback | |
parent | fdd37acc1f381230fc2ed87303e98c7a4daafaad (diff) | |
parent | 9e97a6914e1f7f5ab4ac80c33150c42f733d3a1b (diff) | |
download | ale-3db564f7742360a870679ef6c63361371646fed8.zip |
Merge pull request #2061 from hsanson/1910-add-support-for-bibclean-fixer
Add bibclean fixer support
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/bib_paths/dummy.bib | 0 | ||||
-rw-r--r-- | test/command_callback/test_bib_bibclean_command_callback.vader | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/test/command_callback/bib_paths/dummy.bib b/test/command_callback/bib_paths/dummy.bib new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/command_callback/bib_paths/dummy.bib diff --git a/test/command_callback/test_bib_bibclean_command_callback.vader b/test/command_callback/test_bib_bibclean_command_callback.vader new file mode 100644 index 00000000..fa6f7d33 --- /dev/null +++ b/test/command_callback/test_bib_bibclean_command_callback.vader @@ -0,0 +1,24 @@ +Before: + call ale#assert#SetUpLinterTest('bib', 'bibclean') + + let g:ale_ruby_rubocop_executable = 'bibclean' + let g:ale_ruby_rubocop_options = '' + +After: + call ale#assert#TearDownLinterTest() + +Execute(Executable should default to bibclean): + AssertLinter 'bibclean', ale#Escape('bibclean') + \ . ' -file-position ' + +Execute(Should be able to set a custom executable): + let g:ale_bib_bibclean_executable = 'bin/bibclean' + + AssertLinter 'bin/bibclean' , ale#Escape('bin/bibclean') + \ . ' -file-position ' + +Execute(Should not include custom options): + let g:ale_bib_bibclean_options = '-no-prettryprint' + + AssertLinter 'bibclean' , ale#Escape('bibclean') + \ . ' -file-position ' |