()
| 15 | } |
| 16 | |
| 17 | async fn test_conn() -> Connection { |
| 18 | let db = Builder::new_local(":memory:") |
| 19 | .build() |
| 20 | .await |
| 21 | .expect("in-memory db"); |
| 22 | let conn = db.connect().expect("connect"); |
| 23 | ensure_git_correlation_schema(&conn) |
| 24 | .await |
| 25 | .expect("schema should apply"); |
| 26 | conn |
| 27 | } |
| 28 | |
| 29 | #[test] |
| 30 | fn normalize_worktree_strips_trailing_slashes_and_backslashes() { |
no test coverage detected