()
| 262 | |
| 263 | #[tokio::test] |
| 264 | async fn uuid_descending() { |
| 265 | let mut database = DatabaseTestWrapper::new().await; |
| 266 | let api = insert(&mut database).await; |
| 267 | |
| 268 | test_root_sorting_chunked( |
| 269 | &api, |
| 270 | [( |
| 271 | EntityQueryPath::Uuid, |
| 272 | Ordering::Descending, |
| 273 | NullOrdering::Last, |
| 274 | )], |
| 275 | [page_v2(), page_v1(), charles(), bob(), alice()], |
| 276 | ) |
| 277 | .await; |
| 278 | } |
| 279 | |
| 280 | #[tokio::test] |
| 281 | async fn age_ascending_last() { |