moto/tests/test_cloudfront/test_server.py

15 lines
439 B
Python
Raw Normal View History

2021-11-29 14:35:43 +00:00
import sure # noqa # pylint: disable=unused-import
import xmltodict
import moto.server as server
def test_cloudfront_list():
backend = server.create_backend_app("cloudfront")
test_client = backend.test_client()
res = test_client.get("/2020-05-31/distribution")
data = xmltodict.parse(res.data, dict_constructor=dict)
data.should.have.key("DistributionList")
data["DistributionList"].shouldnt.have.key("Items")