()
| 101 | |
| 102 | #[tokio::test] |
| 103 | async fn test_get_database() { |
| 104 | let ctx = setup_test_server(vec!["default"]).await; |
| 105 | |
| 106 | let db_resp = ctx.api.get_database("default").await.unwrap(); |
| 107 | assert_eq!(db_resp.name, Some("default".to_string())); |
| 108 | } |
| 109 | |
| 110 | #[tokio::test] |
| 111 | async fn test_error_responses_status_mapping() { |
nothing calls this directly
no test coverage detected