test list no documents

This commit is contained in:
mpostma 2021-02-19 19:46:45 +01:00
parent ec9dcd3285
commit 27a7238d3f
No known key found for this signature in database
GPG Key ID: CBC8A7C1D7A28C3A

View File

@ -22,3 +22,15 @@ async fn get_unexisting_index_all_documents() {
.await; .await;
assert_eq!(code, 400); assert_eq!(code, 400);
} }
#[actix_rt::test]
async fn get_no_documents() {
let server = Server::new().await;
let index = server.index("test");
let (_, code) = index.create(None).await;
assert_eq!(code, 200);
let (response, code) = index.get_all_documents(GetAllDocumentsOptions::default()).await;
assert_eq!(code, 200);
assert!(response.as_array().unwrap().is_empty());
}