()
| 8 | |
| 9 | #[sea_orm_macros::test] |
| 10 | async fn main() -> Result<(), DbErr> { |
| 11 | let ctx = TestContext::new("execute_unprepared_tests").await; |
| 12 | create_tables(&ctx.db).await?; |
| 13 | execute_unprepared(&ctx.db).await?; |
| 14 | ctx.delete().await; |
| 15 | |
| 16 | Ok(()) |
| 17 | } |
| 18 | |
| 19 | pub async fn execute_unprepared(db: &DatabaseConnection) -> Result<(), DbErr> { |
| 20 | use insert_default::*; |
nothing calls this directly
no test coverage detected