()
| 703 | |
| 704 | #[test] |
| 705 | fn test_format_hash_full() { |
| 706 | let bytes = [0u8; 32]; |
| 707 | let hash = Hash::from_bytes(bytes); |
| 708 | |
| 709 | let formatted = format_hash(&hash, true); |
| 710 | assert!(!formatted.ends_with("...")); |
| 711 | } |
| 712 | |
| 713 | #[test] |
| 714 | fn test_format_hash_with_custom_length() { |
nothing calls this directly
no test coverage detected