13 lines
291 B
Python
13 lines
291 B
Python
import json
|
|
|
|
import moto.server as server
|
|
|
|
|
|
def test_es_list():
|
|
backend = server.create_backend_app("es")
|
|
test_client = backend.test_client()
|
|
|
|
resp = test_client.get("/2015-01-01/domain")
|
|
assert resp.status_code == 200
|
|
assert json.loads(resp.data) == {"DomainNames": []}
|