()
| 117 | |
| 118 | |
| 119 | def test_dataset_head(): |
| 120 | ddf = timeseries(freq="1D") |
| 121 | expected = ddf.compute() |
| 122 | assert_eq(ddf.head(30, npartitions=-1), expected) |
| 123 | assert_eq(ddf.head(30, npartitions=-1, compute=False), expected) |
nothing calls this directly
no test coverage detected