You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
7 years ago
|
Before:
|
||
|
let g:ale_chef_foodcritic_options = '-t ~F011'
|
||
|
let g:ale_chef_foodcritic_executable = 'foodcritic'
|
||
|
|
||
|
call ale#test#SetDirectory('/testplugin/test')
|
||
|
runtime ale_linters/chef/foodcritic.vim
|
||
|
|
||
|
After:
|
||
|
let g:ale_chef_foodcritic_options = ''
|
||
|
let g:ale_chef_foodcritic_executable = ''
|
||
|
|
||
|
call ale#test#RestoreDirectory()
|
||
|
call ale#linter#Reset()
|
||
|
|
||
|
Execute(command line should be assembled correctly):
|
||
|
AssertEqual
|
||
|
\ 'foodcritic -t \~F011 %t',
|
||
|
\ ale_linters#chef#foodcritic#GetCommand(bufnr(''))
|