moto/tests/test_redshift/test_server.py

23 lines
464 B
Python
Raw Normal View History

2014-11-22 19:03:09 +00:00
from __future__ import unicode_literals
import json
import sure # noqa
import moto.server as server
from moto import mock_redshift
2019-10-31 15:44:26 +00:00
"""
2014-11-22 19:03:09 +00:00
Test the different server responses
2019-10-31 15:44:26 +00:00
"""
2014-11-22 19:03:09 +00:00
@mock_redshift
def test_describe_clusters():
backend = server.create_backend_app("redshift")
test_client = backend.test_client()
2019-10-31 15:44:26 +00:00
res = test_client.get("/?Action=DescribeClusters")
2014-11-22 19:03:09 +00:00
2017-03-16 02:05:11 +00:00
result = res.data.decode("utf-8")
result.should.contain("<Clusters></Clusters>")