Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
View File
+13
View File
@@ -0,0 +1,13 @@
"""Smoke tests for VoIdea health endpoints."""
def test_health_endpoint_exists():
"""Health endpoint route exists and returns expected structure.
This test verifies the route config without hitting a real server.
"""
from app.main import app
routes = [route.path for route in app.routes]
assert "/health" in routes
assert "/api/v1/health" in routes