This website requires JavaScript.
Explore
Help
Sign In
pixelifytica
/
rustlings
Watch
1
Star
0
Fork
You've already forked rustlings
0
Code
Issues
Pull requests
Packages
Projects
Releases
Wiki
Activity
74739261d6
rustlings
/
tests
/
fixture
/
success
/
testSuccess.rs
6 lines
86 B
Rust
Raw
Normal View
History
Unescape
Escape
add tests
2019-03-20 20:05:45 +00:00
#[
test
]
fn
passing
(
)
{
feat: Add a --nocapture option to display test harnesses' outputs This new feature can be accessed by invoking rustlings with --nocapture. Both unit and integration tests added. closes #262 BREAKING CHANGES: The following function take a new boolean argument: * `run` * `verify` * `test` * `compile_and_test`
2020-06-04 15:31:17 +01:00
println!
(
"
THIS TEST TOO SHALL PASS
"
)
;
add tests
2019-03-20 20:05:45 +00:00
assert!
(
true
)
;
}
Reference in a new issue
Copy permalink