summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-05-18 09:19:23 +0100
committerGitHub <noreply@github.com>2017-05-18 09:19:23 +0100
commit2fd4db91ceedaadcd83a94312449c05350abaa6c (patch)
treef8e84e77357a344f9a4d3149b64fab4395ba309e /test
parentf7fc54262dbcdf14732fcf8f2603f0068b3e642c (diff)
parent3f926de76b74faf534c6e4c79cf3f28e96848b90 (diff)
downloadale-2fd4db91ceedaadcd83a94312449c05350abaa6c.zip
Merge pull request #561 from meunierd/override-rubocop-executable
Allow overriding rubocop executable.
Diffstat (limited to 'test')
-rw-r--r--test/command_callback/test_rubocop_command_callback.vader19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/command_callback/test_rubocop_command_callback.vader b/test/command_callback/test_rubocop_command_callback.vader
new file mode 100644
index 00000000..cda0c230
--- /dev/null
+++ b/test/command_callback/test_rubocop_command_callback.vader
@@ -0,0 +1,19 @@
+Before:
+ runtime ale_linters/ruby/rubocop.vim
+
+Execute(Executable should default to rubocop):
+ AssertEqual
+ \ '''rubocop'' --format emacs --force-exclusion --stdin ''dummy.py''',
+ \ ale_linters#ruby#rubocop#GetCommand(bufnr(''))
+
+Execute(Should be able to set a custom executable):
+ let g:ale_ruby_rubocop_executable = 'bin/rubocop'
+ AssertEqual
+ \ '''bin/rubocop'' --format emacs --force-exclusion --stdin ''dummy.py''',
+ \ ale_linters#ruby#rubocop#GetCommand(bufnr(''))
+
+Execute(Setting bundle appends 'exec rubocop'):
+ let g:ale_ruby_rubocop_executable = 'path to/bundle'
+ AssertEqual
+ \ '''path to/bundle'' exec rubocop --format emacs --force-exclusion --stdin ''dummy.py''',
+ \ ale_linters#ruby#rubocop#GetCommand(bufnr(''))