()
| 190 | |
| 191 | #[test] |
| 192 | fn test_module_exports_compare() { |
| 193 | use crate::change::Encoding; |
| 194 | use crate::diff::Algorithm; |
| 195 | |
| 196 | let result = compare_content(b"old", b"new", Algorithm::Myers); |
| 197 | assert!(result.has_changes()); |
| 198 | |
| 199 | let enc = detect_encoding(b"hello"); |
| 200 | assert_eq!(enc, Encoding::Utf8); |
| 201 | } |
| 202 | |
| 203 | #[test] |
| 204 | fn test_workflow_integration() { |
nothing calls this directly
no test coverage detected