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