rust_book_code 0.2.1

The code of rust book
Documentation
// unit tests
pub fn add_two(a: i32) -> i32 {
    internal_adder(a, 2)
}

fn internal_adder(a: i32, b: i32) -> i32 {
    a + b
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    #[ignore]
    fn internal() {
        assert_eq!(4, internal_adder(2, 2));
    }
}