1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-03-30 04:45:20 -04: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");