summaryrefslogtreecommitdiff
path: root/test/fixers/test_black_fixer_callback.vader
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2019-02-08 20:11:11 +0000
committerGitHub <noreply@github.com>2019-02-08 20:11:11 +0000
commitba6f08f3d4944404caca074eafd08c16a6b31b96 (patch)
treef0b704555bb0d529d72970e738ed06427a7de325 /test/fixers/test_black_fixer_callback.vader
parent3ba7d0270816c4928952576fe22cb4ecf408eb0b (diff)
parentde29ff26ff536dbb99c57fc5f20ec6ee0b17a6c6 (diff)
downloadale-ba6f08f3d4944404caca074eafd08c16a6b31b96.zip
Merge pull request #2262 from sectioneight/cd-for-black
Respect python black fixer configuration file
Diffstat (limited to 'test/fixers/test_black_fixer_callback.vader')
-rw-r--r--test/fixers/test_black_fixer_callback.vader7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/fixers/test_black_fixer_callback.vader b/test/fixers/test_black_fixer_callback.vader
index 7843783a..25ad05db 100644
--- a/test/fixers/test_black_fixer_callback.vader
+++ b/test/fixers/test_black_fixer_callback.vader
@@ -24,11 +24,12 @@ After:
Execute(The black callback should return the correct default values):
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')) . ' -'},
+ \ {'command': ale#path#BufferCdString(bufnr('')) . ale#Escape(ale#path#Simplify(g:dir . '/python_paths/with_virtualenv/env/' . b:bin_dir . '/black')) . ' -'},
\ ale#fixers#black#Fix(bufnr(''))
Execute(The black callback should include options):
let g:ale_python_black_options = '--some-option'
+ let g:ale_python_black_change_directory = 0
silent execute 'file ' . fnameescape(g:dir . '/python_paths/with_virtualenv/subdir/foo/bar.py')
AssertEqual
@@ -37,8 +38,10 @@ 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
+ let g:ale_python_black_change_directory = 0
+
call ale#test#SetFilename('/testplugin/test/python_fixtures/pipenv/whatever.py')
- AssertEqual
+ AssertEqual
\ {'command': ale#Escape('pipenv') . ' run black -'},
\ ale#fixers#black#Fix(bufnr(''))