()
| 5308 | |
| 5309 | |
| 5310 | def test_enforce_runtime_divisions(): |
| 5311 | pdf = pd.DataFrame({"x": range(50)}) |
| 5312 | ddf = dd.from_pandas(pdf, 5) |
| 5313 | # Default divisions should be correct |
| 5314 | assert_eq(pdf, ddf.enforce_runtime_divisions()) |
| 5315 | |
| 5316 | |
| 5317 | def test_preserve_ts_unit_in_meta_creation(): |
nothing calls this directly
no test coverage detected