()
| 240 | |
| 241 | |
| 242 | def test_smooth_chunks_not_divisible(): |
| 243 | ii = 2 |
| 244 | ileft = 1 |
| 245 | result_inchunks = [None, (1,) * 36, (9,)] |
| 246 | result_in = _smooth_chunks(ileft, ii, 6, result_inchunks) |
| 247 | expected_in = [None, (1,) * 36, (4, 5)] |
| 248 | assert result_in == expected_in |
| 249 | |
| 250 | |
| 251 | def test_smooth_chunks_first_dimension(): |
nothing calls this directly
no test coverage detected