()
| 252 | |
| 253 | #[test] |
| 254 | fn row_kinds_empty_roundtrip() { |
| 255 | let data = encode_row_kinds(&[]); |
| 256 | let out = decode_row_kinds(&data).unwrap(); |
| 257 | assert!(out.is_empty()); |
| 258 | } |
| 259 | |
| 260 | #[test] |
| 261 | fn timestamps_roundtrip() { |
nothing calls this directly
no test coverage detected