mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-16 09:17:07 +08:00
Add puppet-lint fixer (#701)
* Add puppet-lint fixer * Add vader test for puppetlint fixer * Ensure puppetlint variables are initialized
This commit is contained in:
committed by
w0rp
parent
f984c5fb83
commit
f883d4d4fd
0
test/command_callback/puppet_paths/dummy.pp
Normal file
0
test/command_callback/puppet_paths/dummy.pp
Normal file
31
test/fixers/test_puppetlint_fixer_callback.vader
Normal file
31
test/fixers/test_puppetlint_fixer_callback.vader
Normal file
@@ -0,0 +1,31 @@
|
||||
Before:
|
||||
Save g:ale_puppet_puppetlint_executable
|
||||
Save g:ale_puppet_puppetlint_options
|
||||
|
||||
" Use an invalid global executable, so we don't match it.
|
||||
let g:ale_puppet_puppetlint_executable = 'xxxinvalid'
|
||||
let g:ale_puppet_puppetlint_options = '--invalid'
|
||||
|
||||
silent! execute 'cd /testplugin/test/command_callback'
|
||||
silent cd ..
|
||||
silent cd command_callback
|
||||
let g:dir = getcwd()
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
silent execute 'cd ' . fnameescape(g:dir)
|
||||
" Set the file to something else,
|
||||
" or we'll cause issues when running other tests
|
||||
silent file 'dummy.pp'
|
||||
unlet! g:dir
|
||||
|
||||
Execute(The puppetlint callback should return the correct default values):
|
||||
silent execute 'file ' . fnameescape(g:dir . '/puppet_paths/dummy.pp')
|
||||
|
||||
AssertEqual
|
||||
\ {'read_temporary_file': 1,
|
||||
\ 'command': "'" . g:ale_puppet_puppetlint_executable . "'"
|
||||
\ . ' ' . g:ale_puppet_puppetlint_options
|
||||
\ . ' --fix %t' },
|
||||
\ ale#fixers#puppetlint#Fix(bufnr(''))
|
||||
Reference in New Issue
Block a user