X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/test_no_ipynb.py diff --git a/.vim/bundle/black/tests/test_no_ipynb.py b/.vim/bundle/black/tests/test_no_ipynb.py deleted file mode 100644 index 12c820de..00000000 --- a/.vim/bundle/black/tests/test_no_ipynb.py +++ /dev/null @@ -1,36 +0,0 @@ -import pathlib - -import pytest -from click.testing import CliRunner - -from black import jupyter_dependencies_are_installed, main -from tests.util import get_case_path - -pytestmark = pytest.mark.no_jupyter - -runner = CliRunner() - - -def test_ipynb_diff_with_no_change_single() -> None: - jupyter_dependencies_are_installed.cache_clear() - path = get_case_path("jupyter", "notebook_trailing_newline.ipynb") - result = runner.invoke(main, [str(path)]) - expected_output = ( - "Skipping .ipynb files as Jupyter dependencies are not installed.\n" - 'You can fix this by running ``pip install "black[jupyter]"``\n' - ) - assert expected_output in result.output - - -def test_ipynb_diff_with_no_change_dir(tmp_path: pathlib.Path) -> None: - jupyter_dependencies_are_installed.cache_clear() - runner = CliRunner() - nb = get_case_path("jupyter", "notebook_trailing_newline.ipynb") - tmp_nb = tmp_path / "notebook.ipynb" - tmp_nb.write_bytes(nb.read_bytes()) - result = runner.invoke(main, [str(tmp_path)]) - expected_output = ( - "Skipping .ipynb files as Jupyter dependencies are not installed.\n" - 'You can fix this by running ``pip install "black[jupyter]"``\n' - ) - assert expected_output in result.output