()
| 763 | |
| 764 | #[test] |
| 765 | fn test_mark_binary_file() { |
| 766 | let mut builder = RecordBuilder::new(); |
| 767 | |
| 768 | assert!(!builder.has_binary_files()); |
| 769 | |
| 770 | builder.mark_binary_file(); |
| 771 | |
| 772 | assert!(builder.has_binary_files()); |
| 773 | } |
| 774 | |
| 775 | #[test] |
| 776 | fn test_update_oldest_change() { |
nothing calls this directly
no test coverage detected