mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-27 16:51:01 +00:00
test get index
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user