moto/tests/test_elasticache/test_server.py

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

15 lines
477 B
Python
Raw Normal View History

2021-12-07 12:09:13 +00:00
import sure # noqa # pylint: disable=unused-import
import moto.server as server
def test_elasticache_describe_users():
backend = server.create_backend_app("elasticache")
test_client = backend.test_client()
data = "Action=DescribeUsers"
headers = {"Host": "elasticache.us-east-1.amazonaws.com"}
resp = test_client.post("/", data=data, headers=headers)
resp.status_code.should.equal(200)
str(resp.data).should.contain("<UserId>default</UserId>")