diff options
author | Miklós Tusz <mdtusz@gmail.com> | 2018-10-11 11:29:09 -0400 |
---|---|---|
committer | Miklós Tusz <mdtusz@gmail.com> | 2018-12-21 20:07:14 -0800 |
commit | 4bf260e9535534021e51e4c7f50009430488d429 (patch) | |
tree | 9c8cdbf8a30585f683387eb070e27f969beda931 /test/fixers/test_black_fixer_callback.vader | |
parent | 63e76875d5b4792ed4b29f7f58587ca495dcd9d5 (diff) | |
download | ale-4bf260e9535534021e51e4c7f50009430488d429.zip |
Remove unnecessary exe check for black
Diffstat (limited to 'test/fixers/test_black_fixer_callback.vader')
-rw-r--r-- | test/fixers/test_black_fixer_callback.vader | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/fixers/test_black_fixer_callback.vader b/test/fixers/test_black_fixer_callback.vader index 43f1d486..b146afd6 100644 --- a/test/fixers/test_black_fixer_callback.vader +++ b/test/fixers/test_black_fixer_callback.vader @@ -5,6 +5,7 @@ Before: " Use an invalid global executable, so we don't match it. let g:ale_python_black_executable = 'xxxinvalid' let g:ale_python_black_options = '' + let g:ale_python_black_auto_pipenv = 0 call ale#test#SetDirectory('/testplugin/test/fixers') silent cd .. @@ -21,10 +22,6 @@ After: call ale#test#RestoreDirectory() Execute(The black callback should return the correct default values): - AssertEqual - \ 0, - \ ale#fixers#black#Fix(bufnr('')) - silent execute 'file ' . fnameescape(g:dir . '/python_paths/with_virtualenv/subdir/foo/bar.py') AssertEqual \ {'command': ale#Escape(ale#path#Simplify(g:dir . '/python_paths/with_virtualenv/env/' . b:bin_dir . '/black')) . ' -'}, @@ -40,7 +37,8 @@ Execute(The black callback should include options): Execute(Pipenv is detected when python_black_auto_pipenv is set): let g:ale_python_black_auto_pipenv = 1 + call ale#test#SetFilename('/testplugin/test/python_fixtures/pipenv/whatever.py') AssertEqual - \ {'command': 'pipenv run mypy' }, + \ {'command': ale#Escape('pipenv run black') . ' -'}, \ ale#fixers#black#Fix(bufnr('')) |