(self)
| 110 | def test_is_dask_collection_doesnt_materialize(): |
| 111 | class ArrayTest(Array): |
| 112 | def __dask_graph__(self): |
| 113 | raise NotImplementedError |
| 114 | |
| 115 | arr = ArrayTest(da.random.random((10, 10), chunks=(5, 5)).expr) |
| 116 | assert is_dask_collection(arr) |
no outgoing calls
no test coverage detected