summaryrefslogtreecommitdiff
path: root/test/command_callback/test_rubocop_command_callback.vader
blob: f0aa194f895bb5258c05a744b93699aabc88b721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Before:
  Save g:ale_ruby_rubocop_executable

  let g:ale_ruby_rubocop_executable = 'rubocop'

  runtime ale_linters/ruby/rubocop.vim
  call ale#test#SetDirectory('/testplugin/test/command_callback')
  call ale#test#SetFilename('dummy.rb')

After:
  Restore

  call ale#linter#Reset()
  call ale#test#RestoreDirectory()

Execute(Executable should default to rubocop):
  AssertEqual
  \ ale#Escape('rubocop')
  \   . ' --format json --force-exclusion  --stdin '
  \   . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb')),
  \ ale_linters#ruby#rubocop#GetCommand(bufnr(''))

Execute(Should be able to set a custom executable):
  let g:ale_ruby_rubocop_executable = 'bin/rubocop'

  AssertEqual
  \ ale#Escape('bin/rubocop')
  \   . ' --format json --force-exclusion  --stdin '
  \   . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb')),
  \ ale_linters#ruby#rubocop#GetCommand(bufnr(''))

Execute(Setting bundle appends 'exec rubocop'):
  let g:ale_ruby_rubocop_executable = 'path to/bundle'

  AssertEqual
  \ ale#Escape('path to/bundle') . ' exec rubocop'
  \   . ' --format json --force-exclusion  --stdin '
  \   . ale#Escape(ale#path#Simplify(g:dir . '/dummy.rb')),
  \ ale_linters#ruby#rubocop#GetCommand(bufnr(''))