10 lines
311 B
Python
10 lines
311 B
Python
from app.agent import create_agent_app
|
|
from app.card import AGENT_CARD
|
|
|
|
|
|
def test_application_wiring():
|
|
application = create_agent_app()
|
|
assert application["card"] == AGENT_CARD
|
|
assert {"/health", "/card", "/ingest"} <= set(application["routes"])
|
|
assert "github_push" in application["triggers"]
|