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