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