()
| 995 | |
| 996 | #[test] |
| 997 | fn test_remote_delta_into_pull_delta() { |
| 998 | let mut delta = RemoteDelta::in_sync(); |
| 999 | delta.to_download.push(Node::change("A", "S0")); |
| 1000 | delta.to_download.push(Node::change("B", "S1")); |
| 1001 | |
| 1002 | let pull = delta.into_pull_delta(Some(StateResponse::empty())); |
| 1003 | assert_eq!(pull.download_count(), 2); |
| 1004 | } |
| 1005 | |
| 1006 | #[test] |
| 1007 | fn test_remote_delta_into_push_delta_filters_known() { |
nothing calls this directly
no test coverage detected