()
| 272 | |
| 273 | #[test] |
| 274 | fn fallback_on_mismatched_dims() { |
| 275 | let s = vshard_for_array_coord("prices", &[1, 2], &[4]); |
| 276 | let expected = array_vshard_for_name("prices"); |
| 277 | assert_eq!( |
| 278 | s, expected, |
| 279 | "mismatched dims must fall back to from_collection" |
| 280 | ); |
| 281 | } |
| 282 | |
| 283 | // ── vshard_for_array_tile ──────────────────────────────────────────────── |
| 284 |
nothing calls this directly
no test coverage detected