trpl-zh-cn/listings/ch11-writing-automated-tests/no-listing-11-ignore-a-test/src/lib.rs

11 lines
136 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
#[test]
#[ignore]
fn expensive_test() {
2022-02-09 10:16:09 +08:00
// 需要运行一个小时的代码
2022-02-06 16:43:51 +08:00
}