()
| 368 | use std::time::Duration; |
| 369 | |
| 370 | fn temp_catalog() -> (tempfile::TempDir, ClusterCatalog) { |
| 371 | let dir = tempfile::tempdir().unwrap(); |
| 372 | let path = dir.path().join("cluster.redb"); |
| 373 | let catalog = ClusterCatalog::open(&path).unwrap(); |
| 374 | (dir, catalog) |
| 375 | } |
| 376 | |
| 377 | // ── Pure-function tests ─────────────────────────────────────── |
| 378 |
no test coverage detected