()
| 143 | |
| 144 | #[test] |
| 145 | fn test_compute_insert_order_empty() { |
| 146 | let changes = std::collections::HashMap::new(); |
| 147 | let order = compute_insert_order(&changes).unwrap(); |
| 148 | assert!(order.is_empty()); |
| 149 | } |
| 150 | |
| 151 | #[test] |
| 152 | fn test_format_hashes() { |
nothing calls this directly
no test coverage detected