This website requires JavaScript.
Explore
Help
Sign In
Shikong
/
trpl-zh-cn
Watch
1
Star
0
Fork
0
You've already forked trpl-zh-cn
mirror of
https://github.com/KaiserY/trpl-zh-cn
synced
2025-05-26 03:49:22 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
3a28d16a52
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
Unescape
Escape
add listings code && update to ch02-00
2022-02-06 16:43:51 +08:00
#[
test
]
fn
it_works
(
)
{
assert_eq!
(
2
+
2
,
4
)
;
}
#[
test
]
#[
ignore
]
fn
expensive_test
(
)
{
update to ch11-03
2022-02-09 10:16:09 +08:00
// 需要运行一个小时的代码
add listings code && update to ch02-00
2022-02-06 16:43:51 +08:00
}
Reference in New Issue
Copy Permalink