summaryrefslogtreecommitdiff
path: root/test/command_callback
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-12-06 20:26:04 +0000
committerGitHub <noreply@github.com>2018-12-06 20:26:04 +0000
commit3db564f7742360a870679ef6c63361371646fed8 (patch)
treec711e395e69d6a8ca870b2632f5c5861276ef9fb /test/command_callback
parentfdd37acc1f381230fc2ed87303e98c7a4daafaad (diff)
parent9e97a6914e1f7f5ab4ac80c33150c42f733d3a1b (diff)
downloadale-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.bib0
-rw-r--r--test/command_callback/test_bib_bibclean_command_callback.vader24
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 '