This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/command_callback/test_rubocop_command_callback.vader

30 lines
1,021 B
Text
Raw Normal View History

2017-05-16 15:47:35 +00:00
Before:
call ale#assert#SetUpLinterTest('ruby', 'rubocop')
call ale#test#SetFilename('dummy.rb')
let g:ale_ruby_rubocop_executable = 'rubocop'
let g:ale_ruby_rubocop_options = ''
After:
call ale#assert#TearDownLinterTest()
2017-05-16 15:47:35 +00:00
Execute(Executable should default to rubocop):
AssertLinter 'rubocop', ale#Escape('rubocop')
\ . ' --format json --force-exclusion --stdin '
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb'))
2017-05-16 15:47:35 +00:00
Execute(Should be able to set a custom executable):
let g:ale_ruby_rubocop_executable = 'bin/rubocop'
AssertLinter 'bin/rubocop' , ale#Escape('bin/rubocop')
\ . ' --format json --force-exclusion --stdin '
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb'))
2017-05-16 15:47:35 +00:00
2017-05-17 12:46:47 +00:00
Execute(Setting bundle appends 'exec rubocop'):
let g:ale_ruby_rubocop_executable = 'path to/bundle'
AssertLinter 'path to/bundle', ale#Escape('path to/bundle')
\ . ' exec rubocop'
\ . ' --format json --force-exclusion --stdin '
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb'))