11 lines
241 B
Python
11 lines
241 B
Python
import pytest
|
|
import sys
|
|
import os
|
|
|
|
# Ensure project root is in path
|
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
|
|
|
|
|
def test_agent_capabilities_listing() -> None:
|
|
pytest.fail("TODO: Implement assertions")
|