()
| 696 | |
| 697 | #[test] |
| 698 | fn test_format_hash_full() { |
| 699 | let bytes = [0u8; 32]; |
| 700 | let hash = Hash::from_bytes(bytes); |
| 701 | |
| 702 | let formatted = format_hash(&hash, true); |
| 703 | assert!(!formatted.ends_with("...")); |
| 704 | } |
| 705 | |
| 706 | #[test] |
| 707 | fn test_format_hash_with_custom_length() { |
nothing calls this directly
no test coverage detected