(darr)
| 75 | |
| 76 | |
| 77 | def test_oob_axis(darr): |
| 78 | with pytest.raises(ValueError, match="is out of bounds"): |
| 79 | darr.shuffle([[1]], axis=5) |
| 80 | |
| 81 | |
| 82 | def test_oob_indexer(darr): |
nothing calls this directly
no test coverage detected
searching dependent graphs…