test get index

This commit is contained in:
mpostma 2021-02-18 19:52:00 +01:00
parent 72eed0e369
commit 68692a256e
No known key found for this signature in database
GPG key ID: CBC8A7C1D7A28C3A
2 changed files with 44 additions and 0 deletions

View file

@ -46,3 +46,13 @@ async fn create_existing_index() {
let (_response, code) = index.create(Some("primary")).await;
assert_eq!(code, 400);
}
// test fails (issue #46)
#[actix_rt::test]
#[ignore]
async fn create_with_invalid_index_uid() {
let server = Server::new().await;
let index = server.index("test test");
let (_, code) = index.create(None).await;
assert_eq!(code, 400);
}