mirror of
https://github.com/dense-analysis/ale
synced 2024-12-23 06:33:11 +00:00
refactor: Move test to the right file
This commit is contained in:
parent
491ceacb64
commit
7e9d4fbfc8
@ -48,11 +48,11 @@ endfunction
|
|||||||
function! ale_linters#elixir#credo#GetConfigFile() abort
|
function! ale_linters#elixir#credo#GetConfigFile() abort
|
||||||
let l:config_file = get(g:, 'ale_elixir_credo_config_file', '')
|
let l:config_file = get(g:, 'ale_elixir_credo_config_file', '')
|
||||||
|
|
||||||
if len(l:config_file) == 0
|
if empty(l:config_file)
|
||||||
return ''
|
return ''
|
||||||
else
|
|
||||||
return ' --config-file ' . l:config_file
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
return ' --config-file ' . l:config_file
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#elixir#credo#GetCommand(buffer) abort
|
function! ale_linters#elixir#credo#GetCommand(buffer) abort
|
||||||
|
@ -38,3 +38,10 @@ Execute(Builds credo command with suggest mode when set to 0):
|
|||||||
AssertLinter 'mix',
|
AssertLinter 'mix',
|
||||||
\ ale#path#CdString(ale#path#Simplify(g:dir . '/elixir_paths/mix_project'))
|
\ ale#path#CdString(ale#path#Simplify(g:dir . '/elixir_paths/mix_project'))
|
||||||
\ . 'mix help credo && mix credo suggest --format=flycheck --read-from-stdin %s'
|
\ . 'mix help credo && mix credo suggest --format=flycheck --read-from-stdin %s'
|
||||||
|
|
||||||
|
Execute(Builds credo command with a custom config file):
|
||||||
|
let g:ale_elixir_credo_config_file = '/home/user/custom_credo.exs'
|
||||||
|
|
||||||
|
AssertLinter 'mix',
|
||||||
|
\ ale#path#CdString(ale#path#Simplify(g:dir . '/elixir_paths/mix_project'))
|
||||||
|
\ . 'mix help credo && mix credo suggest --config-file /home/user/custom_credo.exs --format=flycheck --read-from-stdin %s'
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
Before:
|
|
||||||
call ale#test#SetDirectory('/testplugin/test')
|
|
||||||
|
|
||||||
runtime ale_linters/elixir/credo.vim
|
|
||||||
let g:test_command_start = ale#path#CdString('.') . 'mix help credo && '
|
|
||||||
|
|
||||||
After:
|
|
||||||
call ale#test#RestoreDirectory()
|
|
||||||
call ale#linter#Reset()
|
|
||||||
let g:ale_elixir_credo_strict = 0
|
|
||||||
let g:ale_elixir_credo_config_file = ''
|
|
||||||
let g:test_command_start = ''
|
|
||||||
|
|
||||||
Execute(credo runs the right command):
|
|
||||||
call ale#test#SetFilename('elixir-test-files/testfile.ex')
|
|
||||||
|
|
||||||
AssertEqual
|
|
||||||
\ ale_linters#elixir#credo#GetCommand(bufnr('')),
|
|
||||||
\ g:test_command_start . 'mix credo suggest --format=flycheck --read-from-stdin %s'
|
|
||||||
|
|
||||||
Execute(credo runs the right command with the strict flag):
|
|
||||||
let g:ale_elixir_credo_strict = 1
|
|
||||||
call ale#test#SetFilename('elixir-test-files/testfile.ex')
|
|
||||||
|
|
||||||
AssertEqual
|
|
||||||
\ ale_linters#elixir#credo#GetCommand(bufnr('')),
|
|
||||||
\ g:test_command_start . 'mix credo --strict --format=flycheck --read-from-stdin %s'
|
|
||||||
|
|
||||||
Execute(credo runs the right command with a custom config file):
|
|
||||||
let g:ale_elixir_credo_config_file = '/home/user/custom_credo.exs'
|
|
||||||
call ale#test#SetFilename('elixir-test-files/testfile.ex')
|
|
||||||
|
|
||||||
AssertEqual
|
|
||||||
\ ale_linters#elixir#credo#GetCommand(bufnr('')),
|
|
||||||
\ g:test_command_start . 'mix credo suggest --config-file /home/user/custom_credo.exs --format=flycheck --read-from-stdin %s'
|
|
Loading…
Reference in New Issue
Block a user