moto/tests/test_rds/test_server.py
2022-03-09 10:05:18 -01:00

12 lines
332 B
Python

import moto.server as server
import sure # noqa # pylint: disable=unused-import
def test_list_databases():
backend = server.create_backend_app("rds")
test_client = backend.test_client()
res = test_client.get("/?Action=DescribeDBInstances")
res.data.decode("utf-8").should.contain("<DescribeDBInstancesResult>")