| 8 | |
| 9 | |
| 10 | class DummyAggregation: |
| 11 | def __init__(self, *, function: str, column: str, time_window=None, name: str = ""): |
| 12 | self.function = function |
| 13 | self.column = column |
| 14 | self.time_window = time_window |
| 15 | self.name = name |
| 16 | |
| 17 | |
| 18 | def test_aggregation_specs_to_agg_ops_success(): |
no outgoing calls