()
| 1274 | |
| 1275 | #[test] |
| 1276 | fn test_compare_content_identical() { |
| 1277 | let content = b"hello\nworld\n"; |
| 1278 | let ops = compare_content(content, content, Algorithm::Myers); |
| 1279 | |
| 1280 | // All equal operations |
| 1281 | assert!(ops.iter().all(|op| op.is_equal())); |
| 1282 | } |
| 1283 | |
| 1284 | #[test] |
| 1285 | fn test_compare_content_insertion() { |
nothing calls this directly
no test coverage detected