This website requires JavaScript.
Explore
Help
Sign In
ada
/
rustlings-exercises-completed
Archived
Watch
1
Star
0
Fork
0
You've already forked rustlings-exercises-completed
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
This repository has been archived on
2023-03-24
. You can view files and clone it, but cannot push or open issues or pull requests.
8f7b5bd00e
rustlings-exercises-completed
/
tests
/
fixture
/
success
/
testSuccess.rs
6 lines
86 B
Rust
Raw
Normal View
History
Unescape
Escape
add tests
2019-03-20 15:05:45 -05: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 09:31:17 -05:00
println!
(
"
THIS TEST TOO SHALL PASS
"
)
;
add tests
2019-03-20 15:05:45 -05:00
assert!
(
true
)
;
}
Reference in New Issue
Copy Permalink