1mod by; 2 3#[cfg(test)] 4mod tests { 5 use super::*; 6 7 #[test] 8 fn it_works() { 9 let result = by::add(2, 2); 10 assert_eq!(result, 4); 11 } 12}