()
| 215 | |
| 216 | #[allow(clippy::unwrap_used)] |
| 217 | async fn test_conn() -> Connection { |
| 218 | let db = libsql::Builder::new_local(":memory:") |
| 219 | .build() |
| 220 | .await |
| 221 | .unwrap(); |
| 222 | db.connect().unwrap() |
| 223 | } |
| 224 | |
| 225 | #[tokio::test] |
| 226 | #[allow(clippy::unwrap_used)] |
no test coverage detected