mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 22:02:22 -05: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`
5 lines
86 B
Rust
5 lines
86 B
Rust
#[test]
|
|
fn passing() {
|
|
println!("THIS TEST TOO SHALL PASS");
|
|
assert!(true);
|
|
}
|