()
| 287 | |
| 288 | #[test] |
| 289 | fn attr_col_string_roundtrip() { |
| 290 | let vals = vec![ |
| 291 | CellValue::String("hello".into()), |
| 292 | CellValue::String("world".into()), |
| 293 | ]; |
| 294 | let data = encode_attr_col(&vals).unwrap(); |
| 295 | let out = decode_attr_col(&data).unwrap(); |
| 296 | assert_eq!(out, vals); |
| 297 | } |
| 298 | |
| 299 | #[test] |
| 300 | fn attr_col_empty_roundtrip() { |
nothing calls this directly
no test coverage detected