- Bootstrap script for creating monorepo projects - FastAPI backend templates with uv, ruff, mypy, pytest - React frontend templates with TypeScript, ESLint, Prettier - Docker Compose setup with backend, frontend, and database - 9 development and CI scripts - Gitea Actions CI/CD workflows - Comprehensive documentation (8 files) - 45 template files for complete project structure - Automated verification script (all tests pass) - Based on coding-agent-rules standards
23 lines
598 B
Python
23 lines
598 B
Python
"""Integration tests for health endpoints."""
|
|
|
|
from fastapi.testclient import TestClient
|
|
|
|
|
|
def test_health_endpoint(client: TestClient) -> None:
|
|
"""Test health check endpoint."""
|
|
response = client.get("/health")
|
|
|
|
assert response.status_code == 200
|
|
assert response.json() == {"status": "healthy"}
|
|
|
|
|
|
def test_root_endpoint(client: TestClient) -> None:
|
|
"""Test root endpoint."""
|
|
response = client.get("/")
|
|
|
|
assert response.status_code == 200
|
|
data = response.json()
|
|
assert "message" in data
|
|
assert "version" in data
|
|
assert data["version"] == "0.1.0"
|