()
| 346 | |
| 347 | #[tokio::test] |
| 348 | async fn age_descending_first() { |
| 349 | let mut database = DatabaseTestWrapper::new().await; |
| 350 | let api = insert(&mut database).await; |
| 351 | test_root_sorting_chunked( |
| 352 | &api, |
| 353 | [ |
| 354 | ( |
| 355 | age_property_path(), |
| 356 | Ordering::Descending, |
| 357 | NullOrdering::First, |
| 358 | ), |
| 359 | ( |
| 360 | EntityQueryPath::Uuid, |
| 361 | Ordering::Ascending, |
| 362 | NullOrdering::Last, |
| 363 | ), |
| 364 | ], |
| 365 | [alice(), page_v1(), page_v2(), bob(), charles()], |
| 366 | ) |
| 367 | .await; |
| 368 | } |
| 369 | |
| 370 | #[tokio::test] |
| 371 | async fn age_ascending_last_name_ascending_last() { |
nothing calls this directly
no test coverage detected