()
| 1034 | |
| 1035 | #[test] |
| 1036 | fn test_line_ops_into_parts() { |
| 1037 | let ops = LineOps::delete(test_branch_id(7), vec![]); |
| 1038 | let (branch_id, operation) = ops.into_parts(); |
| 1039 | |
| 1040 | assert_eq!(branch_id, test_branch_id(7)); |
| 1041 | assert!(matches!(operation, BranchOp::Delete { .. })); |
| 1042 | } |
| 1043 | |
| 1044 | #[test] |
| 1045 | fn test_line_ops_content_range() { |
nothing calls this directly
no test coverage detected