()
| 279 | |
| 280 | #[tokio::test] |
| 281 | async fn age_ascending_last() { |
| 282 | let mut database = DatabaseTestWrapper::new().await; |
| 283 | let api = insert(&mut database).await; |
| 284 | |
| 285 | test_root_sorting_chunked( |
| 286 | &api, |
| 287 | [ |
| 288 | (age_property_path(), Ordering::Ascending, NullOrdering::Last), |
| 289 | ( |
| 290 | EntityQueryPath::Uuid, |
| 291 | Ordering::Ascending, |
| 292 | NullOrdering::Last, |
| 293 | ), |
| 294 | ], |
| 295 | [bob(), charles(), alice(), page_v1(), page_v2()], |
| 296 | ) |
| 297 | .await; |
| 298 | } |
| 299 | |
| 300 | #[tokio::test] |
| 301 | async fn age_ascending_first() { |
nothing calls this directly
no test coverage detected