()
| 662 | |
| 663 | #[test] |
| 664 | fn test_diff_with_algorithm() { |
| 665 | let diff = Diff::new().with_algorithm("patience"); |
| 666 | assert_eq!(diff.algorithm, "patience"); |
| 667 | } |
| 668 | |
| 669 | #[test] |
| 670 | fn test_diff_with_context() { |
nothing calls this directly
no test coverage detected