Add comprehensive test suite for all new tools

This commit is contained in:
AuraCrimsonRose
2026-06-03 04:41:56 -05:00
parent bc6e23f420
commit 4fd6e41332
3 changed files with 14 additions and 5 deletions

3
tests/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
"""
Test suite for MCP tools.
"""

View File

@@ -1,8 +1,7 @@
from __future__ import annotations
import pytest
import sys
from pathlib import Path
TEST_ROOT = Path(__file__).parent
@pytest.fixture
def workspace(tmp_path):
return tmp_path
sys.path.insert(0, str(Path(__file__).parent.parent))