7 lines
162 B
Python
7 lines
162 B
Python
"""/health — 라우트 핸들러 직접 검증."""
|
|
from main import health
|
|
|
|
|
|
def test_health():
|
|
assert health() == {"ok": True, "service": "trade-monitor"}
|