mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
7 lines
81 B
Rust
7 lines
81 B
Rust
use adder::add_two;
|
|
|
|
#[test]
|
|
fn it_adds_two() {
|
|
assert_eq!(4, add_two(2));
|
|
}
|