pub mod common; use common::server_fixture::ServerFixture; type Result> = std::result::Result; #[tokio::test] async fn get_health() -> Result { // Using a server that has been set up let server_fixture = maybe_skip_integration!(ServerFixture::create_shared()).await; let client = server_fixture.client(); let res = client.health().await?; assert_eq!(res.status, influxdb2::models::Status::Pass); Ok(()) }