()
| 189 | |
| 190 | #[tokio::test] |
| 191 | async fn test_alter_database_not_found() { |
| 192 | let ctx = setup_test_server(vec!["default"]).await; |
| 193 | |
| 194 | let result = ctx |
| 195 | .api |
| 196 | .alter_database("non_existent", vec![], HashMap::new()) |
| 197 | .await; |
| 198 | assert!( |
| 199 | result.is_err(), |
| 200 | "altering non-existent database should fail" |
| 201 | ); |
| 202 | } |
| 203 | |
| 204 | #[tokio::test] |
| 205 | async fn test_drop_database() { |
nothing calls this directly
no test coverage detected