mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-25 19:39:03 +08:00
11 lines
136 B
Rust
Executable File
11 lines
136 B
Rust
Executable File
#[test]
|
|
fn it_works() {
|
|
assert_eq!(2 + 2, 4);
|
|
}
|
|
|
|
#[test]
|
|
#[ignore]
|
|
fn expensive_test() {
|
|
// 需要运行一个小时的代码
|
|
}
|