mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-21 10:32:14 +08:00
#2132 - Replace command_chain and chain_with with ale#command#Run
This commit is contained in:
@@ -5,7 +5,7 @@ After:
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The reek callbacks should return the correct default values):
|
||||
WithChainResults ['reek 5.0.0']
|
||||
GivenCommandOutput ['reek 5.0.0']
|
||||
AssertLinter 'reek', [
|
||||
\ ale#Escape('reek') . ' --version',
|
||||
\ ale#Escape('reek') . ' -f json --no-progress --no-color --force-exclusion --stdin-filename %s',
|
||||
@@ -14,7 +14,7 @@ Execute(The reek callbacks should return the correct default values):
|
||||
" Try with older versions.
|
||||
call ale#semver#ResetVersionCache()
|
||||
|
||||
WithChainResults ['reek 4.8.2']
|
||||
GivenCommandOutput ['reek 4.8.2']
|
||||
AssertLinter 'reek', [
|
||||
\ ale#Escape('reek') . ' --version',
|
||||
\ ale#Escape('reek') . ' -f json --no-progress --no-color --force-exclusion',
|
||||
@@ -23,7 +23,7 @@ Execute(The reek callbacks should return the correct default values):
|
||||
Execute(Setting bundle appends 'exec reek'):
|
||||
let g:ale_ruby_reek_executable = 'bundle'
|
||||
|
||||
WithChainResults ['reek 5.0.0']
|
||||
GivenCommandOutput ['reek 5.0.0']
|
||||
AssertLinter 'bundle', ale#Escape('bundle')
|
||||
\ . ' exec reek'
|
||||
\ . ' -f json --no-progress --no-color --force-exclusion --stdin-filename %s',
|
||||
@@ -31,20 +31,19 @@ Execute(Setting bundle appends 'exec reek'):
|
||||
" Try with older versions.
|
||||
call ale#semver#ResetVersionCache()
|
||||
|
||||
WithChainResults ['reek 4.8.2']
|
||||
GivenCommandOutput ['reek 4.8.2']
|
||||
AssertLinter 'bundle', ale#Escape('bundle')
|
||||
\ . ' exec reek'
|
||||
\ . ' -f json --no-progress --no-color --force-exclusion'
|
||||
|
||||
Execute(The reek version check should be cached):
|
||||
WithChainResults ['reek 5.0.0']
|
||||
GivenCommandOutput ['reek 5.0.0']
|
||||
AssertLinter 'reek', [
|
||||
\ ale#Escape('reek') . ' --version',
|
||||
\ ale#Escape('reek') . ' -f json --no-progress --no-color --force-exclusion --stdin-filename %s',
|
||||
\]
|
||||
|
||||
WithChainResults []
|
||||
GivenCommandOutput []
|
||||
AssertLinter 'reek', [
|
||||
\ '',
|
||||
\ ale#Escape('reek') . ' -f json --no-progress --no-color --force-exclusion --stdin-filename %s',
|
||||
\]
|
||||
|
||||
Reference in New Issue
Block a user