()
| 245 | |
| 246 | #[test] |
| 247 | fn small_tile_roundtrip() { |
| 248 | let s = schema(); |
| 249 | let tile = make_tile(&s, 4); |
| 250 | let out = roundtrip(&tile); |
| 251 | assert_eq!(out.valid_from_ms, tile.valid_from_ms); |
| 252 | assert_eq!(out.attr_cols, tile.attr_cols); |
| 253 | } |
| 254 | |
| 255 | #[test] |
| 256 | fn structural_tile_roundtrip() { |