trpl-zh-cn/listings/ch11-writing-automated-tests/no-listing-11-ignore-a-test/src/lib.rs
2022-02-09 10:16:09 +08:00

11 lines
136 B
Rust
Executable File

#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
#[test]
#[ignore]
fn expensive_test() {
// 需要运行一个小时的代码
}