mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-23 21:02:18 +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));
|
||
|
}
|