()
| 3891 | |
| 3892 | |
| 3893 | def test_from_delayed_meta(): |
| 3894 | v = delayed(np.ones)((5, 3)) |
| 3895 | x = from_delayed(v, shape=(5, 3), meta=np.ones(0)) |
| 3896 | assert isinstance(x, Array) |
| 3897 | assert isinstance(x._meta, np.ndarray) |
| 3898 | |
| 3899 | |
| 3900 | def test_from_delayed_future(): |
nothing calls this directly
no test coverage detected