1#[cfg(test)] 2mod tests { 3 #[test] 4 fn hello() { 5 let result = "<hello>world</hello>"; 6 assert_eq!(result, "<hello>world</hello>"); 7 } 8}