From 63e76875d5b4792ed4b29f7f58587ca495dcd9d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miklo=CC=81s=20Tusz?= Date: Wed, 10 Oct 2018 09:20:33 -0400 Subject: [PATCH] Add test for python_black_auto_pipenv --- test/fixers/test_black_fixer_callback.vader | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/fixers/test_black_fixer_callback.vader b/test/fixers/test_black_fixer_callback.vader index 365b0fa6..43f1d486 100644 --- a/test/fixers/test_black_fixer_callback.vader +++ b/test/fixers/test_black_fixer_callback.vader @@ -37,3 +37,10 @@ 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 + + AssertEqual + \ {'command': 'pipenv run mypy' }, + \ ale#fixers#black#Fix(bufnr(''))