Renames the `edges` table so every edge query on the open connection fails while node and file queries keep working.
(cg: &TraceDecay)
| 14393 | /// Renames the `edges` table so every edge query on the open connection |
| 14394 | /// fails while node and file queries keep working. |
| 14395 | async fn break_edges_table(cg: &TraceDecay) { |
| 14396 | cg.db() |
| 14397 | .conn() |
| 14398 | .execute("ALTER TABLE edges RENAME TO edges_broken", ()) |
| 14399 | .await |
| 14400 | .unwrap(); |
| 14401 | } |
| 14402 | |
| 14403 | #[tokio::test] |
| 14404 | async fn simplify_scan_surfaces_store_failure_instead_of_no_findings() { |
no test coverage detected