2017-05-16 15:47:35 +00:00
|
|
|
Before:
|
2017-07-09 21:43:25 +00:00
|
|
|
Save g:ale_ruby_rubocop_executable
|
|
|
|
|
|
|
|
let g:ale_ruby_rubocop_executable = 'rubocop'
|
|
|
|
|
2017-05-16 15:47:35 +00:00
|
|
|
runtime ale_linters/ruby/rubocop.vim
|
2017-07-09 21:43:25 +00:00
|
|
|
call ale#test#SetDirectory('/testplugin/test/command_callback')
|
|
|
|
call ale#test#SetFilename('dummy.rb')
|
|
|
|
|
|
|
|
After:
|
|
|
|
Restore
|
|
|
|
|
2017-10-05 21:31:00 +00:00
|
|
|
call ale#linter#Reset()
|
2017-07-09 21:43:25 +00:00
|
|
|
call ale#test#RestoreDirectory()
|
2017-05-16 15:47:35 +00:00
|
|
|
|
|
|
|
Execute(Executable should default to rubocop):
|
|
|
|
AssertEqual
|
2017-10-05 21:31:00 +00:00
|
|
|
\ ale#Escape('rubocop')
|
|
|
|
\ . ' --format json --force-exclusion --stdin '
|
2017-12-19 18:23:09 +00:00
|
|
|
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb')),
|
2017-05-16 15:47:35 +00:00
|
|
|
\ ale_linters#ruby#rubocop#GetCommand(bufnr(''))
|
|
|
|
|
|
|
|
Execute(Should be able to set a custom executable):
|
|
|
|
let g:ale_ruby_rubocop_executable = 'bin/rubocop'
|
2017-10-05 21:31:00 +00:00
|
|
|
|
2017-05-16 15:47:35 +00:00
|
|
|
AssertEqual
|
2017-10-05 21:31:00 +00:00
|
|
|
\ ale#Escape('bin/rubocop')
|
|
|
|
\ . ' --format json --force-exclusion --stdin '
|
2017-12-19 18:23:09 +00:00
|
|
|
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb')),
|
2017-05-16 15:47:35 +00:00
|
|
|
\ ale_linters#ruby#rubocop#GetCommand(bufnr(''))
|
|
|
|
|
2017-05-17 12:46:47 +00:00
|
|
|
Execute(Setting bundle appends 'exec rubocop'):
|
|
|
|
let g:ale_ruby_rubocop_executable = 'path to/bundle'
|
2017-10-05 21:31:00 +00:00
|
|
|
|
2017-05-16 15:47:35 +00:00
|
|
|
AssertEqual
|
2017-10-05 21:31:00 +00:00
|
|
|
\ ale#Escape('path to/bundle') . ' exec rubocop'
|
|
|
|
\ . ' --format json --force-exclusion --stdin '
|
2017-12-19 18:23:09 +00:00
|
|
|
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb')),
|
2017-05-16 15:47:35 +00:00
|
|
|
\ ale_linters#ruby#rubocop#GetCommand(bufnr(''))
|