()
| 173 | |
| 174 | |
| 175 | def test_slice_singleton_value_on_boundary(): |
| 176 | assert _slice_1d(15, [5, 5, 5], 10) == {2: 0} |
| 177 | assert _slice_1d(30, (5, 5, 5, 5, 5, 5), 10) == {2: 0} |
| 178 | |
| 179 | |
| 180 | def test_slice_array_1d(): |
nothing calls this directly
no test coverage detected