()
| 69 | |
| 70 | |
| 71 | def test_lengths(): |
| 72 | df = timeseries(freq="1h", start="2000-01-01", end="2000-01-03", seed=123) |
| 73 | assert len(df) == sum(new_collection(Lengths(df.expr).optimize()).compute()) |
| 74 | |
| 75 | |
| 76 | def test_timeseries_empty_projection(): |
nothing calls this directly
no test coverage detected