()
| 323 | |
| 324 | #[tokio::test] |
| 325 | async fn age_descending_last() { |
| 326 | let mut database = DatabaseTestWrapper::new().await; |
| 327 | let api = insert(&mut database).await; |
| 328 | test_root_sorting_chunked( |
| 329 | &api, |
| 330 | [ |
| 331 | ( |
| 332 | age_property_path(), |
| 333 | Ordering::Descending, |
| 334 | NullOrdering::Last, |
| 335 | ), |
| 336 | ( |
| 337 | EntityQueryPath::Uuid, |
| 338 | Ordering::Ascending, |
| 339 | NullOrdering::Last, |
| 340 | ), |
| 341 | ], |
| 342 | [bob(), charles(), alice(), page_v1(), page_v2()], |
| 343 | ) |
| 344 | .await; |
| 345 | } |
| 346 | |
| 347 | #[tokio::test] |
| 348 | async fn age_descending_first() { |
nothing calls this directly
no test coverage detected