add test which covers stdin filename ipynb (#2454)
This commit is contained in:
parent
fcfead919b
commit
7a093f0303
@ -1639,6 +1639,30 @@ def test_reformat_one_with_stdin_filename_pyi(self) -> None:
|
||||
# __BLACK_STDIN_FILENAME__ should have been stripped
|
||||
report.done.assert_called_with(expected, black.Changed.YES)
|
||||
|
||||
def test_reformat_one_with_stdin_filename_ipynb(self) -> None:
|
||||
with patch(
|
||||
"black.format_stdin_to_stdout",
|
||||
return_value=lambda *args, **kwargs: black.Changed.YES,
|
||||
) as fsts:
|
||||
report = MagicMock()
|
||||
p = "foo.ipynb"
|
||||
path = Path(f"__BLACK_STDIN_FILENAME__{p}")
|
||||
expected = Path(p)
|
||||
black.reformat_one(
|
||||
path,
|
||||
fast=True,
|
||||
write_back=black.WriteBack.YES,
|
||||
mode=DEFAULT_MODE,
|
||||
report=report,
|
||||
)
|
||||
fsts.assert_called_once_with(
|
||||
fast=True,
|
||||
write_back=black.WriteBack.YES,
|
||||
mode=replace(DEFAULT_MODE, is_ipynb=True),
|
||||
)
|
||||
# __BLACK_STDIN_FILENAME__ should have been stripped
|
||||
report.done.assert_called_with(expected, black.Changed.YES)
|
||||
|
||||
def test_reformat_one_with_stdin_and_existing_path(self) -> None:
|
||||
with patch(
|
||||
"black.format_stdin_to_stdout",
|
||||
|
Loading…
Reference in New Issue
Block a user