ale/test/command_callback/test_rubocop_command_callba...

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-05-16 15:47:35 +00:00
Before:
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
call ale#test#SetDirectory('/testplugin/test/command_callback')
call ale#test#SetFilename('dummy.rb')
After:
Restore
call ale#test#RestoreDirectory()
2017-05-16 15:47:35 +00:00
Execute(Executable should default to rubocop):
AssertEqual
\ '''rubocop'' --format json --force-exclusion --stdin '
\ . ale#Escape(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'
AssertEqual
\ '''bin/rubocop'' --format json --force-exclusion --stdin '
\ . ale#Escape(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-05-16 15:47:35 +00:00
AssertEqual
\ '''path to/bundle'' exec rubocop --format json --force-exclusion --stdin '
\ . ale#Escape(g:dir . '/dummy.rb'),
2017-05-16 15:47:35 +00:00
\ ale_linters#ruby#rubocop#GetCommand(bufnr(''))