(self)
| 3017 | def test_from_array_dask_collection_warns(): |
| 3018 | class CustomCollection(np.ndarray): |
| 3019 | def __dask_graph__(self): |
| 3020 | return {"bar": 1} |
| 3021 | |
| 3022 | x = CustomCollection([1, 2, 3]) |
| 3023 | with pytest.warns(UserWarning): |
no outgoing calls
no test coverage detected