1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 11:31:35 +02:00

Fix tests

This commit is contained in:
mo8it 2024-04-25 03:27:41 +02:00
parent 2af0cd9cce
commit d26f47dddd
7 changed files with 11 additions and 12 deletions

View File

@ -1,2 +1 @@
fn main() {
}
fn main() {}

View File

@ -1,3 +1,5 @@
fn main() {}
#[test]
fn passing() {
asset!(true);

View File

@ -1,3 +1,5 @@
fn main() {}
#[test]
fn not_passing() {
assert!(false);

View File

@ -1,5 +1 @@
// fake_exercise
fn main() {
}
fn main() {}

View File

@ -1,5 +1 @@
// fake_exercise
fn main() {
}
fn main() {}

View File

@ -1,2 +1,4 @@
fn main() {}
#[test]
fn it_works() {}

View File

@ -1,3 +1,5 @@
fn main() {}
#[test]
fn passing() {
println!("THIS TEST TOO SHALL PASS");