moto/tests/test_emrcontainers/test_server.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
380 B
Python
Raw Normal View History

import json
2021-10-30 11:12:08 +00:00
import sure # noqa # pylint: disable=unused-import
import moto.server as server
"""
Test the different server responses
"""
def test_list_virtual_clusters():
backend = server.create_backend_app("emr-containers")
test_client = backend.test_client()
res = test_client.get("/virtualclusters")
json.loads(res.data).should.have.key("virtualClusters")