1 2 3 4 5 6 7
use agentctl::AgentId; #[test] fn creates_valid_id() { let id = AgentId::new("demo").unwrap(); assert_eq!(id.0, "demo"); }