def test_generate_black_command(self) -> None: black_exe = Path("/bin/black") with TemporaryDirectory() as td: module_dir = Path(td) self.assertEqual( ptr._generate_black_cmd(module_dir, black_exe), (str(black_exe), "--check", "."), )
def test_generate_black_command(self) -> None: black_exe = Path("/bin/black") with TemporaryDirectory() as td: module_dir = Path(td) subdir = module_dir / "awlib" py2 = subdir / "awesome2.py" py1 = module_dir / "awesome.py" touch_files(py1, py2) self.assertEqual( ptr._generate_black_cmd(module_dir, black_exe), (str(black_exe), "--check", str(py1), str(py2)), )