()
| 995 | |
| 996 | #[test] |
| 997 | fn test_line_ops_delete_empty() { |
| 998 | let ops = LineOps::delete_empty(test_branch_id(5)); |
| 999 | |
| 1000 | assert!(ops.is_delete()); |
| 1001 | assert_eq!(ops.leaf_op_count(), 0); |
| 1002 | } |
| 1003 | |
| 1004 | #[test] |
| 1005 | fn test_line_ops_restore() { |
nothing calls this directly
no test coverage detected