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