()
| 333 | |
| 334 | #[test] |
| 335 | fn large_coord_roundtrip() { |
| 336 | let coords: Vec<i64> = (0..100_000).step_by(7).collect(); |
| 337 | let d = make_dict(&coords); |
| 338 | let out = roundtrip(&d); |
| 339 | assert_eq!(out.indices, d.indices); |
| 340 | } |
| 341 | |
| 342 | #[test] |
| 343 | fn string_coord_roundtrip() { |