()
| 13 | |
| 14 | #[sea_orm_macros::test] |
| 15 | async fn main() -> Result<(), DbErr> { |
| 16 | let ctx = TestContext::new("enum_primary_key_tests").await; |
| 17 | create_tables(&ctx.db).await?; |
| 18 | insert_teas(&ctx.db).await?; |
| 19 | ctx.delete().await; |
| 20 | |
| 21 | Ok(()) |
| 22 | } |
| 23 | |
| 24 | pub async fn insert_teas(db: &DatabaseConnection) -> Result<(), DbErr> { |
| 25 | use teas::*; |
nothing calls this directly
no test coverage detected