()
| 217 | |
| 218 | #[test] |
| 219 | fn empty_dict_roundtrip() { |
| 220 | let d = make_dict(vec![], vec![]); |
| 221 | let out = roundtrip(&d); |
| 222 | assert_eq!(out.indices, d.indices); |
| 223 | assert_eq!(out.values, d.values); |
| 224 | } |
| 225 | |
| 226 | #[test] |
| 227 | fn single_entry_roundtrip() { |