()
| 185 | |
| 186 | @pytest.mark.skipif("not np") |
| 187 | def test_empty_numpy_array(): |
| 188 | arr = np.array([]) |
| 189 | assert arr.strides |
| 190 | assert check_tokenize(arr) == check_tokenize(arr) |
| 191 | arr2 = np.array([], dtype=np.int64()) |
| 192 | assert check_tokenize(arr) != check_tokenize(arr2) |
| 193 | |
| 194 | |
| 195 | @pytest.mark.skipif("not np") |
nothing calls this directly
no test coverage detected