mirror of https://github.com/sunface/rust-course
6 lines
86 B
6 lines
86 B
3 years ago
|
#[test]
|
||
|
fn passing() {
|
||
|
println!("THIS TEST TOO SHALL PASS");
|
||
|
assert!(true);
|
||
|
}
|