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

7
pytest.ini Normal file
View File

@@ -0,0 +1,7 @@
[pytest]
minversion = 7.0
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short

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 pytest
import sys
from pathlib import Path from pathlib import Path
TEST_ROOT = Path(__file__).parent sys.path.insert(0, str(Path(__file__).parent.parent))
@pytest.fixture
def workspace(tmp_path):
return tmp_path