Adding code to test
Rust Build / Check (pull_request) Successful in 51s
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Test Suite (pull_request) Successful in 1m56s
Rust Build / Clippy (pull_request) Successful in 1m27s
Rust Build / build (pull_request) Successful in 1m34s

This commit is contained in:
2026-06-09 23:02:32 -04:00
parent b57403026e
commit b76784148e
+7
View File
@@ -127,4 +127,11 @@ async fn test_register_user() {
assert!(false, "Error: {err:?}");
}
}
match db_mgr::drop_database(&tm_pool, &db_name).await {
Ok(()) => {}
Err(err) => {
assert!(false, "Error: {err:?}");
}
}
}