()
| 1134 | |
| 1135 | #[test] |
| 1136 | fn test_path_with_only_conflicts() { |
| 1137 | let mut path = ConflictPath::new(); |
| 1138 | let sides = vec![ConflictPath::new()]; |
| 1139 | path.push(PathElement::conflict(sides)); |
| 1140 | |
| 1141 | assert_eq!(path.len(), 1); |
| 1142 | } |
| 1143 | |
| 1144 | #[test] |
| 1145 | fn test_order_result_forward_edges() { |