()
| 665 | |
| 666 | #[test] |
| 667 | fn test_uuid_short_format() { |
| 668 | let id = uuid_short(); |
| 669 | assert_eq!(id.len(), 8); |
| 670 | assert!(id.chars().all(|c| c.is_ascii_hexdigit())); |
| 671 | } |
| 672 | |
| 673 | #[test] |
| 674 | fn test_uuid_short_not_all_zeros() { |
nothing calls this directly
no test coverage detected