()
| 14 | const COLL: &str = "g"; |
| 15 | |
| 16 | fn open_store() -> (EdgeStore, tempfile::TempDir) { |
| 17 | let dir = tempfile::tempdir().unwrap(); |
| 18 | let store = EdgeStore::open(&dir.path().join("graph.redb")).unwrap(); |
| 19 | (store, dir) |
| 20 | } |
| 21 | |
| 22 | #[test] |
| 23 | fn snapshot_topology_differs_across_ordinals() { |
no test coverage detected