()
| 436 | |
| 437 | #[test] |
| 438 | fn test_no_changes() { |
| 439 | let base = tokenize(b"hello world"); |
| 440 | let result = three_way_merge(&base, &base, &base); |
| 441 | assert!(matches!(result, ThreeWayResult::Merged(_))); |
| 442 | assert_eq!(merged_string(&result).unwrap(), "hello world"); |
| 443 | } |
| 444 | |
| 445 | #[test] |
| 446 | fn test_only_left_changes() { |
nothing calls this directly
no test coverage detected