Files
kitty-workbench/tests/conftest.py
T
2026-03-29 19:05:15 -04:00

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")