()
| 10 | |
| 11 | #[sea_orm_macros::test] |
| 12 | async fn main() { |
| 13 | let ctx = TestContext::new("bakery_chain_sql_err_tests").await; |
| 14 | create_tables(&ctx.db).await.unwrap(); |
| 15 | test_error(&ctx.db).await; |
| 16 | ctx.delete().await; |
| 17 | } |
| 18 | |
| 19 | pub async fn test_error(db: &DatabaseConnection) { |
| 20 | let mud_cake = cake::ActiveModel { |
nothing calls this directly
no test coverage detected