()
| 760 | |
| 761 | #[test] |
| 762 | fn test_diff_empty() { |
| 763 | let result = diff_text(b"", b"", Algorithm::Myers); |
| 764 | assert!(result.is_empty()); |
| 765 | assert!(result.is_unchanged()); |
| 766 | } |
| 767 | |
| 768 | #[test] |
| 769 | fn test_diff_insert() { |
nothing calls this directly
no test coverage detected