(arr)
| 159 | |
| 160 | |
| 161 | def test_at(arr): |
| 162 | assert m.at_t(arr, 0, 2) == 3 |
| 163 | assert m.at_t(arr, 1, 0) == 4 |
| 164 | |
| 165 | assert all(m.mutate_at_t(arr, 0, 2).ravel() == [1, 2, 4, 4, 5, 6]) |
| 166 | assert all(m.mutate_at_t(arr, 1, 0).ravel() == [1, 2, 4, 5, 5, 6]) |
| 167 | |
| 168 | |
| 169 | def test_mutate_readonly(arr): |
nothing calls this directly
no outgoing calls
no test coverage detected