()
| 582 | |
| 583 | |
| 584 | def test_drop_empty_block_split(): |
| 585 | assert [1, 2] == _drop_empty_block_split([0, 1, 2, 3], 3) |
| 586 | assert [1, 2] == _drop_empty_block_split([1, 1, 2, 2], 3) |
| 587 | assert [] == _drop_empty_block_split([0], 0) |
| 588 | |
| 589 | |
| 590 | def verify_splits(splits, blocks_by_split): |
nothing calls this directly
no test coverage detected
searching dependent graphs…