()
| 485 | |
| 486 | #[test] |
| 487 | fn test_find_unique_matches_none() { |
| 488 | let old = lines(&["a\n", "a\n"]); |
| 489 | let new = lines(&["a\n", "a\n"]); |
| 490 | |
| 491 | let matches = find_unique_matches(&old, &new); |
| 492 | |
| 493 | // No unique lines |
| 494 | assert!(matches.is_empty()); |
| 495 | } |
| 496 | |
| 497 | #[test] |
| 498 | fn test_find_unique_matches_no_common() { |
nothing calls this directly
no test coverage detected