mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-15 05:21:20 +08:00
7 lines
79 B
Rust
7 lines
79 B
Rust
|
use adder;
|
||
|
|
||
|
#[test]
|
||
|
fn it_adds_two() {
|
||
|
assert_eq!(4, adder::add_two(2));
|
||
|
}
|