()
| 964 | |
| 965 | #[test] |
| 966 | fn test_line_ops_insert_after() { |
| 967 | let ops = LineOps::insert(test_branch_id(1), Some(test_branch_id(0)), vec![]); |
| 968 | |
| 969 | assert!(ops.is_insert()); |
| 970 | assert_eq!(ops.insert_after(), Some(test_branch_id(0))); |
| 971 | } |
| 972 | |
| 973 | #[test] |
| 974 | fn test_line_ops_delete() { |
nothing calls this directly
no test coverage detected