1 2 3 4 5 6 7 8 9 10
#[cfg(test)] mod tests { use sea_orm::Database; #[tokio::test] async fn test_database() -> eyre::Result<()> { let _db = Database::connect("mysql://root:qiuqiu123@localhost").await?; Ok(()) } }