()
| 205 | |
| 206 | #[tokio::test] |
| 207 | async fn async_disallows_gc() -> Result<()> { |
| 208 | let mut store = async_limiter_store(); |
| 209 | assert!(store.gc(None).is_err()); |
| 210 | store.gc_async(None).await?; |
| 211 | Ok(()) |
| 212 | } |
| 213 | |
| 214 | #[tokio::test] |
| 215 | async fn async_disallows_array_ref_new() -> Result<()> { |
nothing calls this directly
no test coverage detected