()
| 916 | |
| 917 | #[test] |
| 918 | fn test_path_with_only_conflicts() { |
| 919 | let mut path = ConflictPath::new(); |
| 920 | let sides = vec![ConflictPath::new()]; |
| 921 | path.push(PathElement::conflict(sides)); |
| 922 | |
| 923 | assert_eq!(path.len(), 1); |
| 924 | } |
| 925 | |
| 926 | #[test] |
| 927 | fn test_order_result_forward_edges() { |