()
| 5059 | |
| 5060 | |
| 5061 | def test_from_dict_raises(): |
| 5062 | s = pd.Series(range(10)) |
| 5063 | ds = dd.from_pandas(s, npartitions=2) |
| 5064 | with pytest.raises(NotImplementedError, match="Dask collections as inputs"): |
| 5065 | dd.DataFrame.from_dict({"a": ds}, npartitions=2) |
| 5066 | |
| 5067 | |
| 5068 | def test_empty(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…