()
| 411 | |
| 412 | #[test] |
| 413 | fn apply_invalidates_tile_after_success() { |
| 414 | let mut engine = MockEngine::new(); |
| 415 | engine.register_array("b", hlc(100)); |
| 416 | let op = delete_op("b", 30, 50); |
| 417 | apply_op(&mut engine, &op).unwrap(); |
| 418 | assert_eq!(engine.invalidated.len(), 1); |
| 419 | assert_eq!(engine.invalidated[0].0, "b"); |
| 420 | } |
| 421 | } |
nothing calls this directly
no test coverage detected