1 2 3 4 5 6 7 8
use use_event_id::EventId; #[test] fn builds_event_id() { let id = EventId::new("evt-001"); assert_eq!(id.as_str(), "evt-001"); }