()
| 690 | |
| 691 | #[test] |
| 692 | fn test_format_hash_full() { |
| 693 | let bytes = [0u8; 32]; |
| 694 | let hash = Hash::from_bytes(bytes); |
| 695 | |
| 696 | let formatted = format_hash(&hash, true); |
| 697 | assert!(!formatted.ends_with("...")); |
| 698 | } |
| 699 | |
| 700 | #[test] |
| 701 | fn test_format_hash_with_custom_length() { |
nothing calls this directly
no test coverage detected