pub fn add(left: u64, right: u64) -> u64 { left + right } // ANCHOR: here #[cfg(test)] mod tests { use super::*; #[test] fn it_works() { let result = add(2, 2); assert_eq!(result, 4); } #[test] #[ignore] fn expensive_test() { // code that takes an hour to run } } // ANCHOR_END: here