()
| 231 | |
| 232 | |
| 233 | def test_smooth_chunks(): |
| 234 | ii = 2 |
| 235 | ileft = 1 |
| 236 | result_inchunks = [None, (1, 1, 1, 1, 1, 1, 1, 1, 1, 1), (20,)] |
| 237 | result_in = _smooth_chunks(ileft, ii, 2, result_inchunks) |
| 238 | expected_in = [None, (1, 1, 1, 1, 1, 1, 1, 1, 1, 1), (2, 2, 2, 2, 2, 2, 2, 2, 2, 2)] |
| 239 | assert result_in == expected_in |
| 240 | |
| 241 | |
| 242 | def test_smooth_chunks_not_divisible(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…