1///`get_bruh_moment` will return "bruh moment" 2pub fn get_bruh_moment() -> &'static str { 3 "bruh moment" 4} 5 6#[cfg(test)] 7mod tests { 8 #[test] 9 fn it_works() { 10 assert_eq!(super::get_bruh_moment(), "bruh moment") 11 } 12}