()
| 744 | |
| 745 | #[test] |
| 746 | fn test_diff_get_format_priority() { |
| 747 | // name_only takes priority over stat |
| 748 | let diff = Diff::new().with_stat(true).with_name_only(true); |
| 749 | assert_eq!(diff.get_format(), DiffFormat::NameOnly); |
| 750 | |
| 751 | // name_status takes priority over stat but not name_only |
| 752 | let diff2 = Diff::new().with_stat(true).with_name_status(true); |
| 753 | assert_eq!(diff2.get_format(), DiffFormat::NameStatus); |
| 754 | } |
| 755 | |
| 756 | #[test] |
| 757 | fn test_diff_parse_algorithm_myers() { |
nothing calls this directly
no test coverage detected