()
| 56 | |
| 57 | #[tokio::test] |
| 58 | async fn drop_database_superuser_allowed() { |
| 59 | let state = make_state_with_catalog(); |
| 60 | setup_foo_db(&state).await; |
| 61 | let su = superuser(); |
| 62 | ddl_ok(&state, &su, "DROP DATABASE foo").await; |
| 63 | } |
| 64 | |
| 65 | #[tokio::test] |
| 66 | async fn drop_database_cluster_admin_denied() { |
nothing calls this directly
no test coverage detected