mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
8ad5f9bf53
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`
6 lines
86 B
Rust
6 lines
86 B
Rust
#[test]
|
|
fn passing() {
|
|
println!("THIS TEST TOO SHALL PASS");
|
|
assert!(true);
|
|
}
|