mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 21:11:31 +08:00
10 lines
113 B
Rust
Executable File
10 lines
113 B
Rust
Executable File
use adder;
|
|
|
|
mod common;
|
|
|
|
#[test]
|
|
fn it_adds_two() {
|
|
common::setup();
|
|
assert_eq!(4, adder::add_two(2));
|
|
}
|