1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Acropolis OS is a new OS built by Knott Dynamics. /// Returns the crate name. pub fn name() -> &'static str { "acropolis" } #[cfg(test)] mod tests { use super::*; #[test] fn returns_name() { assert_eq!(name(), "acropolis"); } }