()
| 11 | |
| 12 | #[test] |
| 13 | fn fail_pack_too_small_buffer() { |
| 14 | let mut buf = []; |
| 15 | |
| 16 | match write_nil(&mut &mut buf[..]) { |
| 17 | Err(FixedValueWriteError(..)) => (), |
| 18 | other => panic!("unexpected result: {:?}", other) |
| 19 | } |
| 20 | } |
nothing calls this directly
no test coverage detected