()
| 245 | |
| 246 | #[tokio::test] |
| 247 | async fn uuid_ascending() { |
| 248 | let mut database = DatabaseTestWrapper::new().await; |
| 249 | let api = insert(&mut database).await; |
| 250 | |
| 251 | test_root_sorting_chunked( |
| 252 | &api, |
| 253 | [( |
| 254 | EntityQueryPath::Uuid, |
| 255 | Ordering::Ascending, |
| 256 | NullOrdering::First, |
| 257 | )], |
| 258 | [alice(), bob(), charles(), page_v1(), page_v2()], |
| 259 | ) |
| 260 | .await; |
| 261 | } |
| 262 | |
| 263 | #[tokio::test] |
| 264 | async fn uuid_descending() { |