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