moto/tests/test_redshift/test_server.py

23 lines
486 B
Python
Raw Normal View History

2018-12-21 11:28:56 +00:00
from __future__ import unicode_literals
import json
import sure # noqa
import moto.server as server
from moto import mock_redshift
'''
Test the different server responses
'''
@mock_redshift
def test_describe_clusters():
backend = server.create_backend_app("redshift")
test_client = backend.test_client()
res = test_client.get('/?Action=DescribeClusters')
result = res.data.decode("utf-8")
result.should.contain("<Clusters></Clusters>")