()
| 863 | |
| 864 | #[test] |
| 865 | fn test_uuid_short_format() { |
| 866 | let id = uuid_short(); |
| 867 | assert_eq!(id.len(), 8); |
| 868 | assert!(id.chars().all(|c| c.is_ascii_hexdigit())); |
| 869 | } |
| 870 | |
| 871 | #[test] |
| 872 | fn test_uuid_short_not_all_zeros() { |
nothing calls this directly
no test coverage detected