mirror of https://github.com/dense-analysis/ale
20 lines
546 B
Plaintext
20 lines
546 B
Plaintext
Before:
|
|
call ale#assert#SetUpLinterTest('elixir', 'mix')
|
|
|
|
let g:env_prefix = has('win32')
|
|
\ ? 'set MIX_BUILD_PATH=' . ale#Escape('TEMP_DIR') . ' && '
|
|
\ : 'MIX_BUILD_PATH=' . ale#Escape('TEMP_DIR') . ' '
|
|
|
|
After:
|
|
unlet! g:env_prefix
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(The default mix command should be correct):
|
|
call ale#test#SetFilename('mix_paths/wrapped_project/lib/app.ex')
|
|
|
|
AssertLinter 'mix',
|
|
\ ale#path#CdString(ale#path#Simplify(g:dir . '/mix_paths/wrapped_project'))
|
|
\ . g:env_prefix
|
|
\ . 'mix compile %s'
|