Helper to get a temporary database path
()
| 14 | |
| 15 | // Helper to get a temporary database path |
| 16 | fn temp_db() -> (tempfile::TempDir, PathBuf) { |
| 17 | let dir = tempdir().unwrap(); |
| 18 | let db_path = dir.path().join("test.db"); |
| 19 | (dir, db_path) |
| 20 | } |
| 21 | |
| 22 | #[ignore] |
| 23 | #[test] |
no test coverage detected