This website works better with JavaScript.
Explore
Help
Register
Sign In
rust
/
trpl-zh-cn
mirror of
https://github.com/KaiserY/trpl-zh-cn
Watch
5
Star
0
Fork
You've already forked trpl-zh-cn
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
f3c5ef2320
gh-pages
main
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'f3c5ef2320'
${ noResults }
trpl-zh-cn
/
listings
/
ch11-writing-automated-tests
/
no-listing-11-ignore-a-test
/
src
/
lib.rs
11 lines
136 B
Raw
Normal View
History
Unescape
Escape
add listings code && update to ch02-00
3 years ago
#[
test
]
fn
it_works
(
)
{
assert_eq!
(
2
+
2
,
4
)
;
}
#[
test
]
#[
ignore
]
fn
expensive_test
(
)
{
update to ch11-03
3 years ago
// 需要运行一个小时的代码
add listings code && update to ch02-00
3 years ago
}