moto/tests/test_cloudfront/test_server.py

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

17 lines
489 B
Python
Raw Normal View History

2021-11-29 14:35:43 +00:00
import sure # noqa # pylint: disable=unused-import
import xmltodict
2022-06-29 20:12:56 +00:00
from moto import mock_cloudfront
2021-11-29 14:35:43 +00:00
import moto.server as server
2022-06-29 20:12:56 +00:00
@mock_cloudfront
2021-11-29 14:35:43 +00:00
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")