()
| 289 | |
| 290 | #[test] |
| 291 | fn empty_reducer_finalizes_to_none() { |
| 292 | let t = tile(&[(0, None)]); |
| 293 | let r = aggregate_attr(&t, 0, Reducer::Sum); |
| 294 | assert_eq!(r.finalize(), None); |
| 295 | } |
| 296 | |
| 297 | #[test] |
| 298 | fn group_by_buckets_by_dim_value() { |
nothing calls this directly
no test coverage detected