mod common; use axum::http::StatusCode; use sqlx::PgPool; use tower::ServiceExt; #[sqlx::test(migrations = "./migrations")] async fn health_returns_ok(pool: PgPool) { let h = common::harness(pool); let resp = h.app.oneshot(common::get("/api/health")).await.unwrap(); assert_eq!(resp.status(), StatusCode::OK); let body = common::body_json(resp).await; assert_eq!(body["status"], "ok"); }