()
| 191 | |
| 192 | #[tokio::test] |
| 193 | async fn readonly_cannot_create_user() { |
| 194 | let state = make_state(); |
| 195 | assert_readonly_denied(&state, "CREATE USER hacker WITH PASSWORD 'x'").await; |
| 196 | } |
| 197 | |
| 198 | #[tokio::test] |
| 199 | async fn readonly_cannot_drop_user() { |
nothing calls this directly
no test coverage detected