()
| 494 | |
| 495 | #[test] |
| 496 | fn block_iterator_skip() { |
| 497 | let values: Vec<i64> = (0..3000).collect(); |
| 498 | let encoded = encode(&values); |
| 499 | |
| 500 | let mut iter = BlockIterator::new(&encoded).unwrap(); |
| 501 | iter.skip_block().unwrap(); // skip block 0 |
| 502 | let b1 = iter.next().unwrap().unwrap(); |
| 503 | assert_eq!(b1, &values[1024..2048]); |
| 504 | } |
| 505 | } |
nothing calls this directly
no test coverage detected