import pytest @pytest.fixture def tmp_workbench(tmp_path): """Provide a temporary ~/Kitty-Workbench directory.""" wb = tmp_path / "Kitty-Workbench" wb.mkdir() return wb @pytest.fixture def socket_path(tmp_path): """Provide a temporary socket path.""" return str(tmp_path / "test.sock")