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