d376e52908
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
312 B
Python
14 lines
312 B
Python
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")
|