diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-01-03 20:32:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-03 20:32:36 +0000 |
commit | a1654cfb587bb0d73d6e3abba1d99965a26137f8 (patch) | |
tree | ade0040edbc5fe91046ca01967e74d5e4a8ce508 /test | |
parent | 1d87c844b0dd824e3e51cbbf651aec4d1d8834e5 (diff) | |
parent | 48057407ec3d39fdf04d9ccf6c52fa1f7af46428 (diff) | |
download | ale-a1654cfb587bb0d73d6e3abba1d99965a26137f8.zip |
Merge pull request #1988 from mdtusz/pipenv-black
Add support for black usage with pipenv
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_black_fixer_callback.vader | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/test/fixers/test_black_fixer_callback.vader b/test/fixers/test_black_fixer_callback.vader index 365b0fa6..7843783a 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')) . ' -'}, @@ -37,3 +34,11 @@ Execute(The black callback should include options): AssertEqual \ {'command': ale#Escape(ale#path#Simplify(g:dir . '/python_paths/with_virtualenv/env/' . b:bin_dir . '/black')) . ' --some-option -' }, \ ale#fixers#black#Fix(bufnr('')) + +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': ale#Escape('pipenv') . ' run black -'}, + \ ale#fixers#black#Fix(bufnr('')) |