1pub fn get_os() -> String { 2 String::from("Linux") 3} 4 5#[cfg(test)] 6mod tests { 7 use super::*; 8 9 #[test] 10 fn returns_linux_literal() { 11 assert_eq!(get_os(), "Linux"); 12 } 13}